1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 package org.eclipse.jgit.api;
44
45 import java.net.URISyntaxException;
46 import java.text.MessageFormat;
47 import java.util.ArrayList;
48 import java.util.Collection;
49 import java.util.Collections;
50 import java.util.HashMap;
51 import java.util.Map;
52
53 import org.eclipse.jgit.api.errors.GitAPIException;
54 import org.eclipse.jgit.api.errors.InvalidRemoteException;
55 import org.eclipse.jgit.api.errors.JGitInternalException;
56 import org.eclipse.jgit.errors.NotSupportedException;
57 import org.eclipse.jgit.errors.TransportException;
58 import org.eclipse.jgit.internal.JGitText;
59 import org.eclipse.jgit.lib.Constants;
60 import org.eclipse.jgit.lib.Ref;
61 import org.eclipse.jgit.lib.Repository;
62 import org.eclipse.jgit.transport.FetchConnection;
63 import org.eclipse.jgit.transport.RefSpec;
64 import org.eclipse.jgit.transport.Transport;
65 import org.eclipse.jgit.transport.URIish;
66
67
68
69
70
71
72
73
74 public class LsRemoteCommand extends
75 TransportCommand<LsRemoteCommand, Collection<Ref>> {
76
77 private String remote = Constants.DEFAULT_REMOTE_NAME;
78
79 private boolean heads;
80
81 private boolean tags;
82
83 private String uploadPack;
84
85
86
87
88
89
90
91
92 public LsRemoteCommand(Repository repo) {
93 super(repo);
94 }
95
96
97
98
99
100
101
102
103
104
105
106 public LsRemoteCommand setRemote(String remote) {
107 checkCallable();
108 this.remote = remote;
109 return this;
110 }
111
112
113
114
115
116
117
118
119 public LsRemoteCommand setHeads(boolean heads) {
120 this.heads = heads;
121 return this;
122 }
123
124
125
126
127
128
129
130
131 public LsRemoteCommand setTags(boolean tags) {
132 this.tags = tags;
133 return this;
134 }
135
136
137
138
139
140
141
142
143
144 public LsRemoteCommand setUploadPack(String uploadPack) {
145 this.uploadPack = uploadPack;
146 return this;
147 }
148
149
150
151
152
153
154
155
156
157 @Override
158 public Collection<Ref> call() throws GitAPIException,
159 InvalidRemoteException,
160 org.eclipse.jgit.api.errors.TransportException {
161 return execute().values();
162 }
163
164
165
166
167
168
169
170
171
172
173
174
175
176 public Map<String, Ref> callAsMap() throws GitAPIException,
177 InvalidRemoteException,
178 org.eclipse.jgit.api.errors.TransportException {
179 return Collections.unmodifiableMap(execute());
180 }
181
182 private Map<String, Ref> execute() throws GitAPIException,
183 InvalidRemoteException,
184 org.eclipse.jgit.api.errors.TransportException {
185 checkCallable();
186
187 try (Transport transport = repo != null
188 ? Transport.open(repo, remote)
189 : Transport.open(new URIish(remote))) {
190 transport.setOptionUploadPack(uploadPack);
191 configure(transport);
192 Collection<RefSpec> refSpecs = new ArrayList<>(1);
193 if (tags)
194 refSpecs.add(new RefSpec(
195 "refs/tags/*:refs/remotes/origin/tags/*"));
196 if (heads)
197 refSpecs.add(new RefSpec("refs/heads/*:refs/remotes/origin/*"));
198 Collection<Ref> refs;
199 Map<String, Ref> refmap = new HashMap<>();
200 try (FetchConnection fc = transport.openFetch()) {
201 refs = fc.getRefs();
202 if (refSpecs.isEmpty())
203 for (Ref r : refs)
204 refmap.put(r.getName(), r);
205 else
206 for (Ref r : refs)
207 for (RefSpec rs : refSpecs)
208 if (rs.matchSource(r)) {
209 refmap.put(r.getName(), r);
210 break;
211 }
212 return refmap;
213 }
214 } catch (URISyntaxException e) {
215 throw new InvalidRemoteException(MessageFormat.format(
216 JGitText.get().invalidRemote, remote));
217 } catch (NotSupportedException e) {
218 throw new JGitInternalException(
219 JGitText.get().exceptionCaughtDuringExecutionOfLsRemoteCommand,
220 e);
221 } catch (TransportException e) {
222 throw new org.eclipse.jgit.api.errors.TransportException(
223 e.getMessage(),
224 e);
225 }
226 }
227
228 }