View Javadoc
1   package org.apache.maven.scm.provider.accurev.command.add;
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 java.io.File;
23  import java.util.List;
24  
25  import org.apache.maven.scm.CommandParameter;
26  import org.apache.maven.scm.CommandParameters;
27  import org.apache.maven.scm.ScmException;
28  import org.apache.maven.scm.ScmFile;
29  import org.apache.maven.scm.ScmFileSet;
30  import org.apache.maven.scm.ScmFileStatus;
31  import org.apache.maven.scm.ScmResult;
32  import org.apache.maven.scm.command.add.AddScmResult;
33  import org.apache.maven.scm.log.ScmLogger;
34  import org.apache.maven.scm.provider.ScmProviderRepository;
35  import org.apache.maven.scm.provider.accurev.AccuRev;
36  import org.apache.maven.scm.provider.accurev.AccuRevException;
37  import org.apache.maven.scm.provider.accurev.AccuRevScmProviderRepository;
38  import org.apache.maven.scm.provider.accurev.command.AbstractAccuRevCommand;
39  
40  public class AccuRevAddCommand
41      extends AbstractAccuRevCommand
42  {
43  
44      public AccuRevAddCommand( ScmLogger logger )
45      {
46          super( logger );
47      }
48  
49      /**
50       * Add.
51       * 
52       * @todo handle the "binary" parameter. AccuRev does a reasonable job of detecting this itself.
53       */
54      protected ScmResult executeAccurevCommand( AccuRevScmProviderRepository repository, ScmFileSet fileSet,
55                                                 CommandParameters parameters )
56          throws ScmException, AccuRevException
57      {
58  
59          AccuRev accuRev = repository.getAccuRev();
60  
61          String message = parameters.getString( CommandParameter.MESSAGE, "" );
62  
63          File basedir = fileSet.getBasedir();
64  
65          List<File> relativeFiles = fileSet.getFileList();
66  
67          List<File> addedFiles = accuRev.add( basedir, relativeFiles, message );
68  
69          if ( addedFiles != null )
70          {
71              List<ScmFile> resultFiles = getScmFiles( addedFiles, ScmFileStatus.ADDED );
72              return new AddScmResult( accuRev.getCommandLines(), resultFiles );
73          }
74          else
75          {
76              return new AddScmResult( accuRev.getCommandLines(), "AccuRev Error", accuRev.getErrorOutput(), false );
77          }
78      }
79  
80      public AddScmResult add( ScmProviderRepository repo, ScmFileSet scmFileSet, CommandParameters commandParameters )
81          throws ScmException
82      {
83          return (AddScmResult) execute( repo, scmFileSet, commandParameters );
84      }
85  
86  }