View Javadoc
1   package org.apache.maven.scm.provider.clearcase.command.blame;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   * http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.scm.ScmException;
23  import org.apache.maven.scm.ScmFileSet;
24  import org.apache.maven.scm.command.blame.AbstractBlameCommand;
25  import org.apache.maven.scm.command.blame.BlameScmResult;
26  import org.apache.maven.scm.provider.ScmProviderRepository;
27  import org.apache.maven.scm.provider.clearcase.command.ClearCaseCommand;
28  import org.codehaus.plexus.util.cli.CommandLineException;
29  import org.codehaus.plexus.util.cli.CommandLineUtils;
30  import org.codehaus.plexus.util.cli.Commandline;
31  
32  import java.io.File;
33  
34  /**
35   * @author Jérémie Lagarde
36   * @since 1.4
37   */
38  public class ClearCaseBlameCommand
39      extends AbstractBlameCommand
40      implements ClearCaseCommand
41  {
42  
43      public BlameScmResult executeBlameCommand( ScmProviderRepository repo, ScmFileSet workingDirectory, String filename )
44          throws ScmException
45      {
46  
47          if ( getLogger().isDebugEnabled() )
48          {
49              getLogger().debug( "executing blame command..." );
50          }
51          Commandline cl = createCommandLine( workingDirectory.getBasedir(), filename );
52  
53          ClearCaseBlameConsumer consumer = new ClearCaseBlameConsumer( getLogger() );
54  
55          CommandLineUtils.StringStreamConsumer stderr = new CommandLineUtils.StringStreamConsumer();
56  
57          int exitCode;
58  
59          try
60          {
61              if ( getLogger().isDebugEnabled() )
62              {
63                  getLogger().debug( "Executing: " + cl.getWorkingDirectory().getAbsolutePath() + ">>" + cl.toString() );
64              }
65              exitCode = CommandLineUtils.executeCommandLine( cl, consumer, stderr );
66          }
67          catch ( CommandLineException ex )
68          {
69              throw new ScmException( "Error while executing cvs command.", ex );
70          }
71  
72          if ( exitCode != 0 )
73          {
74              return new BlameScmResult( cl.toString(), "The cleartool command failed.", stderr.getOutput(), false );
75          }
76  
77          return new BlameScmResult( cl.toString(), consumer.getLines() );
78      }
79  
80      public static Commandline createCommandLine( File workingDirectory, String filename )
81      {
82          Commandline command = new Commandline();
83          command.setExecutable( "cleartool" );
84          command.createArg().setValue( "annotate" );
85  
86          command.setWorkingDirectory( workingDirectory.getAbsolutePath() );
87  
88          StringBuilder format = new StringBuilder();
89          format.append( "VERSION:%Ln@@@" );
90          format.append( "USER:%u@@@" );
91          format.append( "DATE:%Nd@@@" );
92  
93          command.createArg().setValue( "-out" );
94          command.createArg().setValue( "-" );
95          command.createArg().setValue( "-fmt" );
96          command.createArg().setValue( format.toString() );
97          command.createArg().setValue( "-nheader" );
98          command.createArg().setValue( "-f" );
99          command.createArg().setValue( filename );
100 
101         return command;
102     }
103 }