View Javadoc
1   package org.apache.maven.scm.provider.accurev.command.tag;
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.ScmFileSet;
29  import org.apache.maven.scm.ScmFileStatus;
30  import org.apache.maven.scm.ScmResult;
31  import org.apache.maven.scm.command.tag.TagScmResult;
32  import org.apache.maven.scm.log.ScmLogger;
33  import org.apache.maven.scm.provider.ScmProviderRepository;
34  import org.apache.maven.scm.provider.accurev.AccuRev;
35  import org.apache.maven.scm.provider.accurev.AccuRevException;
36  import org.apache.maven.scm.provider.accurev.AccuRevInfo;
37  import org.apache.maven.scm.provider.accurev.AccuRevScmProviderRepository;
38  import org.apache.maven.scm.provider.accurev.command.AbstractAccuRevCommand;
39  
40  /**
41   * 
42   */
43  public class AccuRevTagCommand
44      extends AbstractAccuRevCommand
45  {
46  
47      public AccuRevTagCommand( ScmLogger logger )
48      {
49          super( logger );
50      }
51  
52      @Override
53      protected ScmResult executeAccurevCommand( AccuRevScmProviderRepository repository, ScmFileSet fileSet,
54                                                 CommandParameters parameters )
55          throws ScmException, AccuRevException
56      {
57  
58          AccuRev accuRev = repository.getAccuRev();
59  
60          String snapshotName = parameters.getString( CommandParameter.TAG_NAME );
61  
62          snapshotName = repository.getSnapshotName( snapshotName );
63  
64          File basedir = fileSet.getBasedir();
65          boolean success = true;
66  
67          AccuRevInfo info = accuRev.info( basedir );
68          List<File> taggedFiles = null;
69  
70          success = accuRev.mksnap( snapshotName, info.getBasis() );
71          if ( success )
72          {
73              taggedFiles = accuRev.statTag( snapshotName );
74          }
75  
76          if ( success && taggedFiles != null )
77          {
78              return new TagScmResult( accuRev.getCommandLines(), getScmFiles( taggedFiles, ScmFileStatus.TAGGED ) );
79          }
80          else
81          {
82              return new TagScmResult( accuRev.getCommandLines(), "AccuRev error", accuRev.getErrorOutput(), false );
83          }
84      }
85  
86      public TagScmResult tag( ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters )
87          throws ScmException
88      {
89          return (TagScmResult) execute( repository, fileSet, parameters );
90      }
91  
92  }