1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.eclipse.aether.internal.impl;
20
21 import javax.inject.Inject;
22 import javax.inject.Named;
23 import javax.inject.Singleton;
24
25 import org.eclipse.aether.RepositorySystemSession;
26 import org.eclipse.aether.repository.LocalRepository;
27 import org.eclipse.aether.repository.LocalRepositoryManager;
28 import org.eclipse.aether.repository.NoLocalRepositoryManagerException;
29 import org.eclipse.aether.spi.localrepo.LocalRepositoryManagerFactory;
30 import org.eclipse.aether.spi.locator.Service;
31 import org.eclipse.aether.spi.locator.ServiceLocator;
32
33 import static java.util.Objects.requireNonNull;
34
35
36
37
38 @Singleton
39 @Named(SimpleLocalRepositoryManagerFactory.NAME)
40 public class SimpleLocalRepositoryManagerFactory implements LocalRepositoryManagerFactory, Service {
41 public static final String NAME = "simple";
42 private float priority;
43
44 private LocalPathComposer localPathComposer;
45
46 @Deprecated
47 public SimpleLocalRepositoryManagerFactory() {
48
49 this.localPathComposer = new DefaultLocalPathComposer();
50 }
51
52 @Inject
53 public SimpleLocalRepositoryManagerFactory(final LocalPathComposer localPathComposer) {
54 this.localPathComposer = requireNonNull(localPathComposer);
55 }
56
57 @Override
58 public void initService(final ServiceLocator locator) {
59 this.localPathComposer = requireNonNull(locator.getService(LocalPathComposer.class));
60 }
61
62 @Override
63 public LocalRepositoryManager newInstance(RepositorySystemSession session, LocalRepository repository)
64 throws NoLocalRepositoryManagerException {
65 requireNonNull(session, "session cannot be null");
66 requireNonNull(repository, "repository cannot be null");
67
68 if ("".equals(repository.getContentType()) || "simple".equals(repository.getContentType())) {
69 return new SimpleLocalRepositoryManager(repository.getBasedir(), "simple", localPathComposer);
70 } else {
71 throw new NoLocalRepositoryManagerException(repository);
72 }
73 }
74
75 @Override
76 public float getPriority() {
77 return priority;
78 }
79
80
81
82
83
84
85
86 public SimpleLocalRepositoryManagerFactory setPriority(float priority) {
87 this.priority = priority;
88 return this;
89 }
90 }