1 package org.apache.archiva.metadata.repository.file;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
23 import java.io.FileNotFoundException;
24 import java.io.FileOutputStream;
25 import java.io.IOException;
26 import java.util.Properties;
28 import org.apache.archiva.metadata.model.ArtifactMetadata;
29 import org.apache.archiva.metadata.model.ProjectBuildMetadata;
30 import org.apache.archiva.metadata.model.ProjectMetadata;
31 import org.apache.archiva.metadata.repository.MetadataRepository;
32 import org.apache.commons.io.IOUtils;
34 public class FileMetadataRepository
35 implements MetadataRepository
37 private File directory;
39 public FileMetadataRepository( File directory )
41 this.directory = directory;
44 public void update( ProjectMetadata project )
46 // TODO: this is a more braindead implementation than we would normally expect, for prototyping purposes
49 File projectDirectory = new File( this.directory, project.getId() );
50 store( project, projectDirectory );
52 for ( ProjectBuildMetadata build : project.getBuilds() )
54 store( build, projectDirectory );
57 catch ( IOException e )
64 private void store( ProjectBuildMetadata build, File directory )
65 throws FileNotFoundException, IOException
67 Properties properties = new Properties();
68 properties.setProperty( "id", build.getId() );
70 for ( ArtifactMetadata artifact : build.getArtifacts() )
72 properties.setProperty( artifact.getId() + ".updated", Long.toString( artifact.getUpdated().getTime() ) );
73 properties.setProperty( artifact.getId() + ".size", Long.toString( artifact.getSize() ) );
76 writeProperties( properties, new File( directory, build.getId() ) );
79 private void store( ProjectMetadata project, File directory )
80 throws FileNotFoundException, IOException
83 Properties properties = new Properties();
84 properties.setProperty( "id", project.getId() );
85 writeProperties( properties, directory );
88 private void writeProperties( Properties properties, File directory )
89 throws FileNotFoundException, IOException
92 FileOutputStream os = new FileOutputStream( new File( directory, "metadata.xml" ) );
95 properties.storeToXML( os, null );
99 IOUtils.closeQuietly( os );