]> source.dussan.org Git - archiva.git/blob
2e3fca39cf9754089932b1438dfdab426dd168fa
[archiva.git] /
1 package org.apache.archiva.metadata.repository.file;
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 java.io.File;
23 import java.io.FileInputStream;
24 import java.io.FileNotFoundException;
25 import java.io.FileOutputStream;
26 import java.io.IOException;
27 import java.util.Properties;
28
29 import org.apache.archiva.metadata.model.ArtifactMetadata;
30 import org.apache.archiva.metadata.model.ProjectBuildMetadata;
31 import org.apache.archiva.metadata.model.ProjectMetadata;
32 import org.apache.archiva.metadata.repository.MetadataRepository;
33 import org.apache.commons.io.IOUtils;
34
35 public class FileMetadataRepository
36     implements MetadataRepository
37 {
38     private File directory;
39
40     public FileMetadataRepository( File directory )
41     {
42         this.directory = directory;
43     }
44
45     public void updateProject( ProjectMetadata project )
46     {
47         // TODO: this is a more braindead implementation than we would normally expect, for prototyping purposes
48         try
49         {
50             File projectDirectory = new File( this.directory, project.getId() );
51             Properties properties = new Properties();
52             properties.setProperty( "id", project.getId() );
53             writeProperties( properties, projectDirectory );
54         }
55         catch ( IOException e )
56         {
57             // TODO!
58             e.printStackTrace();
59         }
60     }
61
62     public void updateBuild( String projectId, ProjectBuildMetadata build )
63     {
64         File directory = new File( this.directory, projectId );
65
66         Properties properties = new Properties();
67         properties.setProperty( "id", build.getId() );
68
69         try
70         {
71             writeProperties( properties, new File( directory, build.getId() ) );
72         }
73         catch ( IOException e )
74         {
75             // TODO
76             e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
77         }
78     }
79
80     public void updateArtifact( String projectId, String buildId, ArtifactMetadata artifact )
81     {
82         File directory = new File( this.directory, projectId + "/" + buildId );
83
84         Properties properties = new Properties();
85         FileInputStream in = null;
86         try
87         {
88             in = new FileInputStream( new File( directory, "metadata.xml" ) );
89             properties.load( in );
90         }
91         catch ( FileNotFoundException e )
92         {
93             // skip - use blank properties
94         }
95         catch ( IOException e )
96         {
97             // TODO
98             e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
99         }
100         finally
101         {
102             IOUtils.closeQuietly( in );
103         }
104
105         properties.setProperty( artifact.getId() + ".updated", Long.toString( artifact.getUpdated().getTime() ) );
106         properties.setProperty( artifact.getId() + ".size", Long.toString( artifact.getSize() ) );
107
108         try
109         {
110             writeProperties( properties, directory );
111         }
112         catch ( IOException e )
113         {
114             // TODO
115             e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
116         }
117     }
118
119     private void writeProperties( Properties properties, File directory )
120         throws IOException
121     {
122         directory.mkdirs();
123         FileOutputStream os = new FileOutputStream( new File( directory, "metadata.xml" ) );
124         try
125         {
126             properties.storeToXML( os, null );
127         }
128         finally
129         {
130             IOUtils.closeQuietly( os );
131         }
132     }
133
134 }