1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.maven.scm.provider.hg.command.inventory;
20
21 import java.io.File;
22
23 import org.apache.maven.scm.ScmException;
24 import org.apache.maven.scm.ScmFileSet;
25 import org.apache.maven.scm.ScmResult;
26 import org.apache.maven.scm.ScmVersion;
27 import org.apache.maven.scm.command.Command;
28 import org.apache.maven.scm.command.list.AbstractListCommand;
29 import org.apache.maven.scm.command.list.ListScmResult;
30 import org.apache.maven.scm.provider.ScmProviderRepository;
31 import org.apache.maven.scm.provider.hg.HgUtils;
32 import org.apache.maven.scm.provider.hg.command.HgCommandConstants;
33
34
35
36
37
38
39 public class HgListCommand extends AbstractListCommand implements Command {
40
41
42
43 protected ListScmResult executeListCommand(
44 ScmProviderRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion scmVersion)
45 throws ScmException {
46
47
48 File workingDir = fileSet.getBasedir();
49
50
51 String[] listCmd = new String[] {HgCommandConstants.INVENTORY_CMD};
52
53
54 StringBuilder cmd = new StringBuilder();
55 for (int i = 0; i < listCmd.length; i++) {
56 String s = listCmd[i];
57 cmd.append(s);
58 if (i < listCmd.length - 1) {
59 cmd.append(" ");
60 }
61 }
62
63 HgListConsumer consumer = new HgListConsumer();
64
65 ScmResult result = HgUtils.execute(consumer, workingDir, listCmd);
66
67 if (result.isSuccess()) {
68 return new ListScmResult(consumer.getFiles(), result);
69 } else {
70 throw new ScmException("Error while executing command " + cmd.toString());
71 }
72 }
73 }