1 package org.apache.maven.scm.provider.perforce.command.remove;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import java.util.ArrayList;
23 import java.util.List;
24
25 import org.apache.maven.scm.ScmFile;
26 import org.apache.maven.scm.ScmFileStatus;
27 import org.apache.maven.scm.provider.perforce.command.AbstractPerforceConsumer;
28 import org.apache.regexp.RE;
29 import org.apache.regexp.RESyntaxException;
30 import org.codehaus.plexus.util.cli.StreamConsumer;
31
32
33
34
35
36
37 public class PerforceRemoveConsumer
38 extends AbstractPerforceConsumer
39 implements StreamConsumer
40 {
41 private static final String FILE_BEGIN_TOKEN = "//";
42
43 private static final String PATTERN = "^([^#]+)#\\d+ - (.*)";
44
45 private List<ScmFile> removals = new ArrayList<ScmFile>();
46
47 private RE revisionRegexp;
48
49 private boolean error = false;
50
51 public PerforceRemoveConsumer()
52 {
53 try
54 {
55 revisionRegexp = new RE( PATTERN );
56 }
57 catch ( RESyntaxException ignored )
58 {
59 ignored.printStackTrace();
60 }
61 }
62
63 public List<ScmFile> getRemovals()
64 {
65 return removals;
66 }
67
68
69 public void consumeLine( String line )
70 {
71 if ( line.startsWith( "... " ) )
72 {
73 return;
74 }
75
76 if ( !line.startsWith( FILE_BEGIN_TOKEN ) )
77 {
78 error( line );
79 }
80
81 if ( !revisionRegexp.match( line ) )
82 {
83 error( line );
84 }
85
86 removals.add( new ScmFile(revisionRegexp.getParen( 1 ), ScmFileStatus.DELETED ) );
87 }
88
89 private void error( String line )
90 {
91 error = true;
92 output.println( line );
93 }
94
95 public boolean isSuccess()
96 {
97 return !error;
98 }
99 }