1. /*
  2. * Copyright 2002-2004 The Apache Software Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. package org.apache.tools.ant.taskdefs.optional.sos;
  18. import org.apache.tools.ant.types.Commandline;
  19. /**
  20. * Commits and unlocks files in Visual SourceSafe via a SourceOffSite server.
  21. *
  22. *
  23. * @ant.task name="soscheckin" category="scm"
  24. */
  25. public class SOSCheckin extends SOS {
  26. /**
  27. * The filename to act upon.
  28. * If no file is specified then the task
  29. * acts upon the project.
  30. *
  31. * @param filename The new file value
  32. */
  33. public final void setFile(String filename) {
  34. super.setInternalFilename(filename);
  35. }
  36. /**
  37. * Flag to recursively apply the action. Defaults to false.
  38. *
  39. * @param recursive True for recursive operation.
  40. */
  41. public void setRecursive(boolean recursive) {
  42. super.setInternalRecursive(recursive);
  43. }
  44. /**
  45. * The comment to apply to all files being labelled.
  46. *
  47. * @param comment The new comment value
  48. */
  49. public void setComment(String comment) {
  50. super.setInternalComment(comment);
  51. }
  52. /**
  53. * Build the command line. <p>
  54. *
  55. * CheckInFile required parameters: -server -name -password -database -project
  56. * -file<br>
  57. * CheckInFile optional parameters: -workdir -log -verbose -nocache -nocompression
  58. * -soshome<br>
  59. * CheckInProject required parameters: -server -name -password -database
  60. * -project<br>
  61. * CheckInProject optional parameters: workdir -recursive -log -verbose
  62. * -nocache -nocompression -soshome<br>
  63. *
  64. * @return Commandline the generated command to be executed
  65. */
  66. protected Commandline buildCmdLine() {
  67. commandLine = new Commandline();
  68. // If we find a "file" attribute then act on a file otherwise act on a project
  69. if (getFilename() != null) {
  70. // add -command CheckInFile to the commandline
  71. commandLine.createArgument().setValue(SOSCmd.FLAG_COMMAND);
  72. commandLine.createArgument().setValue(SOSCmd.COMMAND_CHECKIN_FILE);
  73. // add -file xxxxx to the commandline
  74. commandLine.createArgument().setValue(SOSCmd.FLAG_FILE);
  75. commandLine.createArgument().setValue(getFilename());
  76. } else {
  77. // add -command CheckInProject to the commandline
  78. commandLine.createArgument().setValue(SOSCmd.FLAG_COMMAND);
  79. commandLine.createArgument().setValue(SOSCmd.COMMAND_CHECKIN_PROJECT);
  80. // look for a recursive option
  81. commandLine.createArgument().setValue(getRecursive());
  82. }
  83. getRequiredAttributes();
  84. getOptionalAttributes();
  85. // Look for a comment
  86. if (getComment() != null) {
  87. commandLine.createArgument().setValue(SOSCmd.FLAG_COMMENT);
  88. commandLine.createArgument().setValue(getComment());
  89. }
  90. return commandLine;
  91. }
  92. }