View Javadoc

1   package org.apache.continuum.buildagent.taskqueue.manager;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may 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
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.continuum.buildagent.taskqueue.PrepareBuildProjectsTask;
23  import org.apache.continuum.taskqueue.BuildProjectTask;
24  import org.apache.continuum.taskqueue.manager.TaskQueueManagerException;
25  import org.apache.continuum.utils.build.BuildTrigger;
26  import org.codehaus.plexus.taskqueue.TaskQueue;
27  
28  import java.util.List;
29  
30  public interface BuildAgentTaskQueueManager
31  {
32      String ROLE = BuildAgentTaskQueueManager.class.getName();
33  
34      TaskQueue getBuildQueue();
35  
36      TaskQueue getPrepareBuildQueue();
37  
38      void cancelBuild()
39          throws TaskQueueManagerException;
40  
41      int getIdOfProjectCurrentlyBuilding()
42          throws TaskQueueManagerException;
43  
44      BuildProjectTask getCurrentProjectInBuilding()
45          throws TaskQueueManagerException;
46  
47      PrepareBuildProjectsTask getCurrentProjectInPrepareBuild()
48          throws TaskQueueManagerException;
49  
50      boolean hasBuildTaskInQueue()
51          throws TaskQueueManagerException;
52  
53      boolean isProjectInBuildQueue( int projectId )
54          throws TaskQueueManagerException;
55  
56      boolean isInPrepareBuildQueue( int projectGroupId, BuildTrigger trigger, String scmRootAddress )
57          throws TaskQueueManagerException;
58  
59      List<PrepareBuildProjectsTask> getProjectsInPrepareBuildQueue()
60          throws TaskQueueManagerException;
61  
62      List<BuildProjectTask> getProjectsInBuildQueue()
63          throws TaskQueueManagerException;
64  
65      boolean removeFromPrepareBuildQueue( int projectGroupId, int scmRootId )
66          throws TaskQueueManagerException;
67  
68      void removeFromPrepareBuildQueue( int[] hashCodes )
69          throws TaskQueueManagerException;
70  
71      boolean removeFromBuildQueue( int projectId, int buildDefinitionId )
72          throws TaskQueueManagerException;
73  
74      void removeFromBuildQueue( int[] hashCodes )
75          throws TaskQueueManagerException;
76  }