Exemplo n.º 1
0
  public void addToNode(Node parentNode, PathFactory pathFactory) {
    Map<String, Object> libraryAttributes = Maps.newHashMapWithExpectedSize(2);
    libraryAttributes.put("name", name);
    if (type != null) {
      libraryAttributes.put("type", type);
    }
    Node libraryNode = parentNode.appendNode("library", libraryAttributes);
    Node classesNode = libraryNode.appendNode("CLASSES");
    for (File file : classes) {
      Map<String, Object> attributes = Maps.newHashMapWithExpectedSize(1);
      attributes.put("url", pathFactory.path(file).getUrl());
      classesNode.appendNode("root", attributes);
    }
    Node javadocNode = libraryNode.appendNode("JAVADOC");
    for (File file : javadoc) {
      Map<String, Object> attributes = Maps.newHashMapWithExpectedSize(1);
      attributes.put("url", pathFactory.path(file).getUrl());
      javadocNode.appendNode("root", attributes);
    }
    Node sourcesNode = libraryNode.appendNode("SOURCES");
    for (File file : sources) {
      Map<String, Object> attributes = Maps.newHashMapWithExpectedSize(1);
      attributes.put("url", pathFactory.path(file).getUrl());
      sourcesNode.appendNode("root", attributes);
    }

    if (compilerClasspath.size() > 0) {
      Node properties = libraryNode.appendNode("properties");
      Node compilerClasspathNode = properties.appendNode("compiler-classpath");
      for (File file : compilerClasspath) {
        Map<String, Object> attributes = Maps.newHashMapWithExpectedSize(1);
        attributes.put("url", pathFactory.path(file, true).getUrl());
        compilerClasspathNode.appendNode("root", attributes);
      }
    }
  }
Exemplo n.º 2
0
 public static String historyJobHosts(final JobId jobId) {
   return HISTORY_JOBS.path(jobId.toString(), HOSTS);
 }
Exemplo n.º 3
0
 public static String configHostJob(final String host, final JobId jobId) {
   return CONFIG_HOSTS.path(host, JOBS, jobId.toString());
 }
Exemplo n.º 4
0
 public static String configJobHost(final JobId jobId, final String host) {
   return CONFIG_JOBS.path(jobId.toString(), HOSTS, host);
 }
Exemplo n.º 5
0
 public static String configJobRefShort(final JobId id) {
   return CONFIG_JOBREFS.path(id.getName() + ":" + id.getVersion());
 }
Exemplo n.º 6
0
 public static String configJob(final JobId id) {
   return CONFIG_JOBS.path(id.toString());
 }
Exemplo n.º 7
0
 public static String configJobs() {
   return CONFIG_JOBS.path();
 }
Exemplo n.º 8
0
 public static String historyJobs() {
   return HISTORY_JOBS.path();
 }
Exemplo n.º 9
0
 public static String statusHostJob(final String host, final JobId jobId) {
   return STATUS_HOSTS.path(host, JOBS, jobId.toString());
 }
Exemplo n.º 10
0
 public static String statusHostJobs(final String host) {
   return STATUS_HOSTS.path(host, JOBS);
 }
Exemplo n.º 11
0
 public static String statusHosts() {
   return STATUS_HOSTS.path();
 }
Exemplo n.º 12
0
 public static String configId(final String id) {
   return CONFIG_ID.path(id);
 }
Exemplo n.º 13
0
 public static String configHostPort(final String host, final int port) {
   return CONFIG_HOSTS.path(host, PORTS, String.valueOf(port));
 }
Exemplo n.º 14
0
 public static String configHostPorts(final String host) {
   return CONFIG_HOSTS.path(host, PORTS);
 }
Exemplo n.º 15
0
 public static String configHostJobCreation(
     final String host, final JobId id, final UUID operationId) {
   return CONFIG_HOSTS.path(host, JOBS, id.toString(), CREATION_PREFIX + operationId);
 }
Exemplo n.º 16
0
 public static String historyJobHost(final JobId jobId, final String host) {
   return HISTORY_JOBS.path(jobId.toString(), HOSTS, host);
 }
Exemplo n.º 17
0
 public static String historyJob(final JobId jobId) {
   return HISTORY_JOBS.path(jobId.toString());
 }
Exemplo n.º 18
0
 public static String statusHostUp(final String host) {
   return STATUS_HOSTS.path(host, UP);
 }
Exemplo n.º 19
0
 public static String configHosts() {
   return CONFIG_HOSTS.path();
 }
Exemplo n.º 20
0
 public static String statusMasterUp(final String master) {
   return STATUS_MASTERS.path(master, UP);
 }
Exemplo n.º 21
0
 public static String configJobRefs() {
   return CONFIG_JOBREFS.path();
 }
Exemplo n.º 22
0
 public static String statusMaster() {
   return STATUS_MASTERS.path();
 }
Exemplo n.º 23
0
 public static String configJobCreation(final JobId id, final UUID operationId) {
   final String name = CREATION_PREFIX + operationId;
   return CONFIG_JOBS.path(id.toString(), name);
 }
Exemplo n.º 24
0
 public static String statusHostAgentInfo(final String host) {
   return STATUS_HOSTS.path(host, AGENTINFO);
 }
Exemplo n.º 25
0
 public static String configJobHosts(final JobId jobId) {
   return CONFIG_JOBS.path(jobId.toString(), HOSTS);
 }
Exemplo n.º 26
0
 public static String statusHostEnvVars(final String host) {
   return STATUS_HOSTS.path(host, ENVIRONMENT);
 }
Exemplo n.º 27
0
 public static String configHost(final String host) {
   return CONFIG_HOSTS.path(host);
 }
Exemplo n.º 28
0
 public static String historyJobHostEventsTimestamp(
     final JobId jobId, final String host, final long timestamp) {
   return HISTORY_JOBS.path(jobId.toString(), HOSTS, host, EVENTS, String.valueOf(timestamp));
 }