blob: 2316fa54c0985d681b557c616fe664ad48b25d5b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package org.apache.hugegraph.job;
import java.util.Set;
import org.apache.hugegraph.backend.id.Id;
import org.apache.hugegraph.task.HugeTask;
import org.apache.hugegraph.task.TaskCallable;
import org.apache.hugegraph.task.TaskScheduler;
import org.apache.hugegraph.type.HugeType;
import org.apache.hugegraph.HugeGraph;
import org.apache.hugegraph.util.E;
public class JobBuilder<V> {
private final HugeGraph graph;
private String name;
private String input;
private Job<V> job;
private Set<Id> dependencies;
public static <T> JobBuilder<T> of(final HugeGraph graph) {
return new JobBuilder<>(graph);
}
public JobBuilder(final HugeGraph graph) {
this.graph = graph;
}
public JobBuilder<V> name(String name) {
this.name = name;
return this;
}
public JobBuilder<V> input(String input) {
this.input = input;
return this;
}
public JobBuilder<V> job(Job<V> job) {
this.job = job;
return this;
}
public JobBuilder<V> dependencies(Set<Id> dependencies) {
this.dependencies = dependencies;
return this;
}
public HugeTask<V> schedule() {
E.checkArgumentNotNull(this.name, "Job name can't be null");
E.checkArgumentNotNull(this.job, "Job callable can't be null");
E.checkArgument(this.job instanceof TaskCallable,
"Job must be instance of TaskCallable");
this.graph.taskScheduler().checkRequirement("schedule");
@SuppressWarnings("unchecked")
TaskCallable<V> job = (TaskCallable<V>) this.job;
HugeTask<V> task = new HugeTask<>(this.genTaskId(), null, job);
task.type(this.job.type());
task.name(this.name);
if (this.input != null) {
task.input(this.input);
}
if (this.dependencies != null && !this.dependencies.isEmpty()) {
for (Id depend : this.dependencies) {
task.depends(depend);
}
}
TaskScheduler scheduler = this.graph.taskScheduler();
scheduler.schedule(task);
return task;
}
private Id genTaskId() {
return this.graph.getNextId(HugeType.TASK);
}
}