]> source.dussan.org Git - archiva.git/blob
acca83a76717f963ae5cb11a35aec211760d5ff8
[archiva.git] /
1 package org.apache.archiva.repository;
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.archiva.common.filelock.DefaultFileLockManager;
23 import org.apache.archiva.common.filelock.FileLockManager;
24 import org.apache.archiva.repository.content.FilesystemStorage;
25 import org.apache.archiva.repository.content.RepositoryStorage;
26 import org.apache.archiva.repository.features.IndexCreationFeature;
27 import org.apache.archiva.repository.features.RemoteIndexFeature;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 import java.io.IOException;
32 import java.nio.file.Path;
33 import java.util.Locale;
34
35 /**
36  *
37  * Just a helper class, mainly used for unit tests.
38  *
39  *
40  */
41 public class BasicRemoteRepository extends AbstractRemoteRepository
42
43 {
44     Logger log = LoggerFactory.getLogger(BasicRemoteRepository.class);
45
46     RemoteIndexFeature remoteIndexFeature = new RemoteIndexFeature();
47     IndexCreationFeature indexCreationFeature = new IndexCreationFeature(true);
48
49
50     static final StandardCapabilities CAPABILITIES = new StandardCapabilities( new ReleaseScheme[] {
51         ReleaseScheme.RELEASE, ReleaseScheme.SNAPSHOT
52     }, new String[] {"default"}, new String[0], new String[] {
53         RemoteIndexFeature.class.toString(),
54             IndexCreationFeature.class.toString()
55     }, true, true, true, true, true  );
56
57     public BasicRemoteRepository( String id, String name, RepositoryStorage storage)
58     {
59         super( RepositoryType.MAVEN, id, name, storage);
60         initFeatures();
61     }
62
63     public BasicRemoteRepository( Locale primaryLocale, RepositoryType type, String id, String name, RepositoryStorage storage )
64     {
65         super( primaryLocale, type, id, name, storage );
66         initFeatures();
67     }
68
69     private void initFeatures() {
70         addFeature( remoteIndexFeature );
71         addFeature( indexCreationFeature );
72     }
73
74     @Override
75     public boolean hasIndex( )
76     {
77         return true;
78     }
79
80     @Override
81     public RepositoryCapabilities getCapabilities( )
82     {
83         return CAPABILITIES;
84     }
85
86
87     public static BasicRemoteRepository newFilesystemInstance(String id, String name, Path basePath) throws IOException {
88         FileLockManager lockManager = new DefaultFileLockManager();
89         FilesystemStorage storage = new FilesystemStorage(basePath.resolve(id), lockManager);
90         return new BasicRemoteRepository(id, name, storage);
91     }
92 }