]> source.dussan.org Git - archiva.git/blob
9241ad31664b2c0784582aace80043afb908b06c
[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.FileNotFoundException;
24 import java.io.FileOutputStream;
25 import java.io.IOException;
26 import java.util.Properties;
27
28 import org.apache.archiva.metadata.model.ProjectMetadata;
29 import org.apache.archiva.metadata.repository.MetadataRepository;
30 import org.apache.commons.io.IOUtils;
31
32 public class FileMetadataRepository
33     implements MetadataRepository
34 {
35     private File directory; 
36     
37     public FileMetadataRepository( File directory )
38     {
39         this.directory = directory;
40     }
41
42     public void update( ProjectMetadata project )
43     {
44         try
45         {
46             store( project );
47         }
48         catch ( IOException e )
49         {
50             // TODO!
51             e.printStackTrace();
52         }
53     }
54
55     private void store( ProjectMetadata project )
56         throws FileNotFoundException, IOException
57     {
58         // TODO: this is a more braindead implementation than we would normally expect, for prototyping purposes
59         
60         Properties properties = new Properties();
61         properties.put( "id", project.getId() );
62         File directory = new File( this.directory, project.getId() );
63         directory.mkdirs();
64         FileOutputStream os = new FileOutputStream( new File( directory, "metadata.xml" ) );
65         try
66         {
67             properties.storeToXML( os, null );
68         }
69         finally
70         {
71             IOUtils.closeQuietly( os );
72         }
73     }
74
75 }