]> source.dussan.org Git - archiva.git/blob
38e13ea41a11388bfc714dbe74a7d8742f9fdb08
[archiva.git] /
1 package org.apache.maven.archiva.database.jdo;
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.ArchivaDatabaseException;
23 import org.apache.maven.archiva.database.ArtifactDAO;
24 import org.apache.maven.archiva.database.Constraint;
25 import org.apache.maven.archiva.database.ObjectNotFoundException;
26 import org.apache.maven.archiva.model.ArchivaArtifact;
27 import org.apache.maven.archiva.model.ArchivaArtifactModel;
28 import org.apache.maven.archiva.model.jpox.ArchivaArtifactModelKey;
29
30 import java.util.ArrayList;
31 import java.util.Iterator;
32 import java.util.List;
33
34 /**
35  * JdoArtifactDAO 
36  *
37  * @version $Id$
38  * 
39  * @plexus.component role-hint="jdo"
40  */
41 public class JdoArtifactDAO
42     implements ArtifactDAO
43 {
44     /**
45      * @plexus.requirement role-hint="archiva"
46      */
47     private JdoAccess jdo;
48
49     /* .\ Archiva Artifact \. _____________________________________________________________ */
50
51     public ArchivaArtifact createArtifact( String groupId, String artifactId, String version, String classifier,
52                                            String type, String repositoryId )
53     {
54         ArchivaArtifact artifact;
55
56         try
57         {
58             artifact = getArtifact( groupId, artifactId, version, classifier, type, repositoryId );
59         }
60         catch ( ArchivaDatabaseException e )
61         {
62             artifact = new ArchivaArtifact( groupId, artifactId, version, classifier, type, repositoryId );
63         }
64
65         return artifact;
66     }
67
68     public ArchivaArtifact getArtifact( String groupId, String artifactId, String version, String classifier,
69                                         String type, String repositoryId )
70         throws ObjectNotFoundException, ArchivaDatabaseException
71     {
72         ArchivaArtifactModelKey key = new ArchivaArtifactModelKey();
73         key.setGroupId( groupId );
74         key.setArtifactId( artifactId );
75         key.setVersion( version );
76         key.setClassifier( classifier );
77         key.setType( type );
78         key.setRepositoryId( repositoryId );
79
80         ArchivaArtifactModel model = (ArchivaArtifactModel) jdo.getObjectById( ArchivaArtifactModel.class, key, null );
81
82         return new ArchivaArtifact( model );
83     }
84
85     public List queryArtifacts( Constraint constraint )
86         throws ObjectNotFoundException, ArchivaDatabaseException
87     {
88         List results = jdo.queryObjects( ArchivaArtifactModel.class, constraint );
89         if ( ( results == null ) || results.isEmpty() )
90         {
91             return results;
92         }
93
94         List ret = new ArrayList();
95         Iterator it = results.iterator();
96         while ( it.hasNext() )
97         {
98             ArchivaArtifactModel model = (ArchivaArtifactModel) it.next();
99             ret.add( new ArchivaArtifact( model ) );
100         }
101
102         return ret;
103     }
104
105     public ArchivaArtifact saveArtifact( ArchivaArtifact artifact )
106         throws ArchivaDatabaseException
107     {
108         ArchivaArtifactModel model = (ArchivaArtifactModel) jdo.saveObject( artifact.getModel() );
109         if ( model == null )
110         {
111             return null;
112         }
113
114         return new ArchivaArtifact( model );
115     }
116
117     public void deleteArtifact( ArchivaArtifact artifact )
118         throws ArchivaDatabaseException
119     {
120         jdo.removeObject( artifact.getModel() );
121     }
122 }