1 package org.apache.maven.scm.provider.git.gitexe.command.status;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import java.net.URI;
23
24 import org.apache.maven.scm.ScmException;
25 import org.apache.maven.scm.ScmFileSet;
26 import org.apache.maven.scm.command.status.AbstractStatusCommand;
27 import org.apache.maven.scm.command.status.StatusScmResult;
28 import org.apache.maven.scm.provider.ScmProviderRepository;
29 import org.apache.maven.scm.provider.git.command.GitCommand;
30 import org.apache.maven.scm.provider.git.gitexe.command.GitCommandLineUtils;
31 import org.apache.maven.scm.provider.git.repository.GitScmProviderRepository;
32 import org.codehaus.plexus.util.cli.CommandLineUtils;
33 import org.codehaus.plexus.util.cli.Commandline;
34
35
36
37
38
39 public class GitStatusCommand
40 extends AbstractStatusCommand
41 implements GitCommand
42 {
43
44 protected StatusScmResult executeStatusCommand( ScmProviderRepository repo, ScmFileSet fileSet )
45 throws ScmException
46 {
47 Commandline clRevparse = createRevparseShowToplevelCommand( fileSet );
48
49 CommandLineUtils.StringStreamConsumer stdout = new CommandLineUtils.StringStreamConsumer();
50 CommandLineUtils.StringStreamConsumer stderr = new CommandLineUtils.StringStreamConsumer();
51
52 URI relativeRepositoryPath = null;
53
54 int exitCode;
55
56 exitCode = GitCommandLineUtils.execute( clRevparse, stdout, stderr, getLogger() );
57 if ( exitCode != 0 )
58 {
59
60 if ( getLogger().isInfoEnabled() )
61 {
62 getLogger().info( "Could not resolve toplevel" );
63 }
64 }
65 else
66 {
67 relativeRepositoryPath =
68 GitStatusConsumer.resolveURI( stdout.getOutput().trim(), fileSet.getBasedir().toURI() );
69 }
70
71 Commandline cl = createCommandLine( (GitScmProviderRepository) repo, fileSet );
72
73 GitStatusConsumer consumer = new GitStatusConsumer( getLogger(), fileSet.getBasedir(), relativeRepositoryPath );
74
75 stderr = new CommandLineUtils.StringStreamConsumer();
76
77 exitCode = GitCommandLineUtils.execute( cl, consumer, stderr, getLogger() );
78 if ( exitCode != 0 )
79 {
80
81 if ( getLogger().isInfoEnabled() )
82 {
83 getLogger().info( "nothing added to commit but untracked files present (use \"git add\" to track)" );
84 }
85 }
86
87 return new StatusScmResult( cl.toString(), consumer.getChangedFiles() );
88 }
89
90
91
92
93
94 public static Commandline createCommandLine( GitScmProviderRepository repository, ScmFileSet fileSet )
95 {
96 Commandline cl = GitCommandLineUtils.getBaseGitCommandLine( fileSet.getBasedir(), "status" );
97 cl.addArguments( new String[] { "--porcelain", "." } );
98 return cl;
99 }
100
101 public static Commandline createRevparseShowToplevelCommand( ScmFileSet fileSet )
102 {
103 Commandline cl = GitCommandLineUtils.getBaseGitCommandLine( fileSet.getBasedir(), "rev-parse" );
104 cl.addArguments( new String[] { "--show-toplevel" } );
105 return cl;
106 }
107 }