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