]> source.dussan.org Git - archiva.git/blob
30cc72795da6ab206cfb182a0a9aa377ee147dd3
[archiva.git] /
1 package org.apache.archiva.indexer.maven;
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.indexer.ArchivaIndexingContext;
23 import org.apache.archiva.repository.Repository;
24 import org.apache.maven.index.context.IndexingContext;
25
26 import java.io.IOException;
27 import java.net.URI;
28 import java.nio.file.Files;
29 import java.sql.Date;
30 import java.time.ZonedDateTime;
31 import java.util.Set;
32
33 /**
34  * Maven implementation of index context
35  */
36 public class MavenIndexContext implements ArchivaIndexingContext {
37
38     private IndexingContext delegate;
39     private Repository repository;
40
41     MavenIndexContext(Repository repository, IndexingContext delegate) {
42         this.delegate = delegate;
43         this.repository = repository;
44
45     }
46
47     @Override
48     public String getId() {
49         return delegate.getId();
50     }
51
52     @Override
53     public Repository getRepository() {
54         return repository;
55     }
56
57     @Override
58     public URI getPath() {
59         return delegate.getIndexDirectoryFile().toURI();
60     }
61
62     @Override
63     public boolean isEmpty() throws IOException {
64         return Files.list(delegate.getIndexDirectoryFile().toPath()).count()==0;
65     }
66
67     @Override
68     public void commit() throws IOException {
69         delegate.commit();
70     }
71
72     @Override
73     public void rollback() throws IOException {
74         delegate.rollback();
75     }
76
77     @Override
78     public void optimize() throws IOException {
79         delegate.optimize();
80     }
81
82     @Override
83     public void close(boolean deleteFiles) throws IOException {
84         delegate.close(deleteFiles);
85     }
86
87     @Override
88     public void purge() throws IOException {
89         delegate.purge();
90     }
91
92     @Override
93     public boolean supports(Class<?> clazz) {
94         return IndexingContext.class.equals(clazz);
95     }
96
97     @Override
98     public <T> T getBaseContext(Class<T> clazz) throws UnsupportedOperationException {
99         if (IndexingContext.class.equals(clazz)) {
100             return (T) delegate;
101         } else {
102             throw new UnsupportedOperationException("The class "+clazz+" is not supported by the maven indexer");
103         }
104     }
105
106     @Override
107     public Set<String> getGroups() throws IOException {
108         return delegate.getAllGroups();
109     }
110
111     @Override
112     public void updateTimestamp(boolean save) throws IOException {
113         delegate.updateTimestamp(save);
114     }
115
116     @Override
117     public void updateTimestamp(boolean save, ZonedDateTime time) throws IOException {
118         delegate.updateTimestamp(save, Date.from(time.toInstant()));
119     }
120
121
122 }