/src/com/redhat/ceylon/ant/CeylonCopyAntTask.java

http://github.com/ceylon/ceylon-compiler · Java · 178 lines · 90 code · 30 blank · 58 comment · 13 complexity · f559b283bf83ef5d18fb1e7d0eaebe21 MD5 · raw file

  1. /* Originally based on the javac task from apache-ant-1.7.1.
  2. * The license in that file is as follows:
  3. *
  4. * Licensed to the Apache Software Foundation (ASF) under one or
  5. * more contributor license agreements. See the NOTICE file
  6. * distributed with this work for additional information regarding
  7. * copyright ownership. The ASF licenses this file to You under
  8. * the Apache License, Version 2.0 (the "License"); you may not
  9. * use this file except in compliance with the License. You may
  10. * obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing,
  15. * software distributed under the License is distributed on an "AS
  16. * IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  17. * express or implied. See the License for the specific language
  18. * governing permissions and limitations under the License.
  19. *
  20. */
  21. /*
  22. * Copyright Red Hat Inc. and/or its affiliates and other contributors
  23. * as indicated by the authors tag. All rights reserved.
  24. */
  25. package com.redhat.ceylon.ant;
  26. import org.apache.tools.ant.BuildException;
  27. import org.apache.tools.ant.Project;
  28. import org.apache.tools.ant.types.Commandline;
  29. public class CeylonCopyAntTask extends OutputRepoUsingCeylonAntTask {
  30. static final String FAIL_MSG = "Copy failed; see the error output for details.";
  31. private final ModuleSet moduleSet = new ModuleSet();
  32. private boolean withDependencies;
  33. private Boolean js;
  34. private Boolean jvm;
  35. private Boolean docs;
  36. private Boolean src;
  37. private Boolean scripts;
  38. private Boolean all;
  39. public CeylonCopyAntTask() {
  40. super("copy");
  41. }
  42. public void addConfiguredModuleSet(ModuleSet moduleset) {
  43. this.moduleSet.addConfiguredModuleSet(moduleset);
  44. }
  45. /**
  46. * Adds a module to compile
  47. * @param module the module name to compile
  48. */
  49. public void addConfiguredModule(Module module) {
  50. this.moduleSet.addConfiguredModule(module);
  51. }
  52. public void addConfiguredSourceModules(SourceModules sourceModules) {
  53. this.moduleSet.addConfiguredSourceModules(sourceModules);
  54. }
  55. /**
  56. * Determines if dependencies should be recursively copied or not
  57. */
  58. public void setWithDependencies(boolean withDependencies) {
  59. this.withDependencies = withDependencies;
  60. }
  61. /**
  62. * Set to true to copy JS artifacts (defaults: true)
  63. */
  64. public void setJs(Boolean js) {
  65. this.js = js;
  66. }
  67. /**
  68. * Set to true to copy JVM artifacts (defaults: true)
  69. */
  70. public void setJvm(Boolean jvm) {
  71. this.jvm = jvm;
  72. }
  73. /**
  74. * Set to true to copy source artifacts (defaults: false)
  75. */
  76. public void setSrc(Boolean src) {
  77. this.src = src;
  78. }
  79. /**
  80. * Set to true to copy script artifacts (defaults: false)
  81. */
  82. public void setScripts(Boolean scripts) {
  83. this.scripts = scripts;
  84. }
  85. /**
  86. * Set to true to copy documentation artifacts (defaults: false)
  87. */
  88. public void setDocs(Boolean docs) {
  89. this.docs = docs;
  90. }
  91. /**
  92. * Set to true to copy every artifact (js, jvm, docs, src)
  93. */
  94. public void setAll(Boolean all) {
  95. this.all = all;
  96. }
  97. /**
  98. * Check that all required attributes have been set and nothing silly has
  99. * been entered.
  100. *
  101. * @exception BuildException if an error occurs
  102. */
  103. protected void checkParameters() throws BuildException {
  104. if (this.moduleSet.getModules().isEmpty()) {
  105. throw new BuildException("You must specify a <module> or <moduleset>");
  106. }
  107. for (Module module : moduleSet.getModules()) {
  108. if (module.getVersion() == null || module.getVersion().isEmpty()) {
  109. throw new BuildException("You must specify a version for the module " + module.getName());
  110. }
  111. }
  112. }
  113. /**
  114. * Perform the compilation.
  115. */
  116. protected void completeCommandline(Commandline cmd) {
  117. super.completeCommandline(cmd);
  118. if (withDependencies) {
  119. appendOption(cmd, "--with-dependencies");
  120. }
  121. if (BooleanUtil.isTrue(js)) {
  122. appendOption(cmd, "--js");
  123. }
  124. if (BooleanUtil.isTrue(jvm)) {
  125. appendOption(cmd, "--jvm");
  126. }
  127. if (BooleanUtil.isTrue(src)) {
  128. appendOption(cmd, "--src");
  129. }
  130. if (BooleanUtil.isTrue(scripts)) {
  131. appendOption(cmd, "--scripts");
  132. }
  133. if (BooleanUtil.isTrue(docs)) {
  134. appendOption(cmd, "--docs");
  135. }
  136. if (BooleanUtil.isTrue(all)) {
  137. appendOption(cmd, "--all");
  138. }
  139. for (Module module : moduleSet.getModules()) {
  140. log("Adding module: "+module, Project.MSG_VERBOSE);
  141. cmd.createArgument().setValue(module.toVersionedSpec());
  142. }
  143. }
  144. @Override
  145. protected String getFailMessage() {
  146. return FAIL_MSG;
  147. }
  148. }