]> source.dussan.org Git - archiva.git/blob
d59cbf9ccecb474454c4d9ffa724b0105a40fe09
[archiva.git] /
1 package org.apache.maven.archiva.database.artifact;
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 com.ibatis.sqlmap.client.SqlMapClient;
23
24 import org.apache.maven.archiva.database.AbstractIbatisStore;
25 import org.apache.maven.archiva.database.ArchivaDatabaseException;
26 import org.apache.maven.artifact.Artifact;
27
28 import java.sql.SQLException;
29
30 /**
31  * ArtifactPersistence
32  *
33  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
34  * @version $Id$
35  * 
36  * @plexus.component role="org.apache.maven.archiva.database.artifact.ArtifactPersistence"
37  */
38 public class ArtifactPersistence
39     extends AbstractIbatisStore
40 {
41     protected String[] getTableNames()
42     {
43         return new String[] { "ArtifactKeys" };
44     }
45
46     private ArtifactKey toKey( Artifact artifact )
47     {
48         ArtifactKey key = new ArtifactKey();
49         key.setGroupId( artifact.getGroupId() );
50         key.setArtifactId( artifact.getArtifactId() );
51         key.setVersion( artifact.getVersion() );
52         key.setClassifier( artifact.getClassifier() );
53         key.setType( artifact.getType() );
54         return key;
55     }
56
57     public void create( Artifact artifact )
58         throws ArchivaDatabaseException
59     {
60         SqlMapClient sqlMap = ibatisHelper.getSqlMapClient();
61
62         try
63         {
64             sqlMap.startTransaction();
65
66             getLogger().info( "Adding artifact." );
67             sqlMap.update( "addArtifact", artifact );
68
69             sqlMap.commitTransaction();
70         }
71         catch ( SQLException e )
72         {
73             getLogger().error( "Error while executing statement, showing all linked exceptions in SQLException." );
74
75             while ( e != null )
76             {
77                 getLogger().error( e.getMessage(), e );
78
79                 e = e.getNextException();
80             }
81
82             throw new ArchivaDatabaseException( "Error while executing statement.", e );
83         }
84         finally
85         {
86             try
87             {
88                 sqlMap.endTransaction();
89             }
90             catch ( SQLException e )
91             {
92                 e.printStackTrace();
93             }
94         }
95     }
96
97     public Artifact read( String groupId, String artifactId, String version )
98     {
99         return null;
100     }
101
102     public Artifact read( String groupId, String artifactId, String version, String type )
103     {
104         return null;
105     }
106
107     public Artifact read( String groupId, String artifactId, String version, String classifier, String type )
108     {
109         return null;
110     }
111
112     public void update( Artifact artifact )
113     {
114
115     }
116
117     public void delete( Artifact artifact )
118     {
119
120     }
121
122     public void delete( String groupId, String artifactId, String version )
123     {
124
125     }
126
127     public void delete( String groupId, String artifactId, String version, String type )
128     {
129
130     }
131
132     public void delete( String groupId, String artifactId, String version, String classifier, String type )
133     {
134
135     }
136
137 }