]> source.dussan.org Git - archiva.git/blob
47766b94e8692ccc80061109063bb3b76ec21f85
[archiva.git] /
1 package org.apache.maven.archiva.database.constraints;
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.maven.archiva.database.Constraint;
23 import org.apache.maven.archiva.model.ArchivaArtifactModel;
24
25 import java.util.List;
26
27 /**
28  * Obtain a set of unique ArtifactIds for the specified groupId.
29  *
30  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
31  * @version $Id$
32  */
33 public class UniqueArtifactIdConstraint
34     extends AbstractSimpleConstraint
35     implements Constraint
36 {
37     private StringBuffer sql = new StringBuffer();
38
39     /**
40      * Obtain a set of unique ArtifactIds for the specified groupId.
41      * 
42      * @param groupId the groupId to search for artifactIds within.
43      */
44     public UniqueArtifactIdConstraint( List<String> selectedRepositoryIds, String groupId )
45     {
46         appendSelect( sql );
47         sql.append( " WHERE " );
48         SqlBuilder.appendWhereSelectedRepositories( sql, "repositoryId", selectedRepositoryIds );
49         sql.append( " && " );
50         appendWhereSelectedGroupId( sql );
51         appendGroupBy( sql );
52
53         super.params = new Object[] { groupId };
54     }
55
56     /**
57      * Obtain a set of unique ArtifactIds for the specified groupId.
58      * 
59      * @param groupId the groupId to search for artifactIds within.
60      */
61     public UniqueArtifactIdConstraint( String groupId )
62     {
63         appendSelect( sql );
64         sql.append( " WHERE " );
65         appendWhereSelectedGroupId( sql );
66         appendGroupBy( sql );
67
68         super.params = new Object[] { groupId };
69     }
70
71     @SuppressWarnings("unchecked")
72     public Class getResultClass()
73     {
74         return String.class;
75     }
76
77     public String getSelectSql()
78     {
79         return sql.toString();
80     }
81
82     private void appendGroupBy( StringBuffer buf )
83     {
84         buf.append( " GROUP BY artifactId ORDER BY artifactId ASCENDING" );
85     }
86
87     private void appendSelect( StringBuffer buf )
88     {
89         buf.append( "SELECT artifactId FROM " ).append( ArchivaArtifactModel.class.getName() );
90     }
91
92     private void appendWhereSelectedGroupId( StringBuffer buf )
93     {
94         buf.append( " groupId == selectedGroupId PARAMETERS String selectedGroupId" );
95     }
96
97 }