You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by do...@apache.org on 2001/12/16 01:34:52 UTC

cvs commit: jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/pvcs Pvcs.java PvcsProject.java

donaldp     01/12/15 16:34:52

  Modified:    proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/pvcs
                        Pvcs.java PvcsProject.java
  Log:
  BuildException -> TaskException
  
  Removed uneeded imports.
  
  Processed code through style formatter.
  
  Revision  Changes    Path
  1.3       +16 -16    jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/pvcs/Pvcs.java
  
  Index: Pvcs.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/pvcs/Pvcs.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Pvcs.java	2001/12/15 14:55:59	1.2
  +++ Pvcs.java	2001/12/16 00:34:52	1.3
  @@ -6,6 +6,7 @@
    * the LICENSE file.
    */
   package org.apache.tools.ant.taskdefs.optional.pvcs;
  +
   import java.io.BufferedReader;
   import java.io.BufferedWriter;
   import java.io.File;
  @@ -19,7 +20,7 @@
   import java.util.Enumeration;
   import java.util.Random;
   import java.util.Vector;
  -import org.apache.tools.ant.BuildException;
  +import org.apache.myrmidon.api.TaskException;
   import org.apache.tools.ant.Project;
   import org.apache.tools.ant.taskdefs.Execute;
   import org.apache.tools.ant.taskdefs.ExecuteStreamHandler;
  @@ -314,17 +315,17 @@
       }
   
       /**
  -     * @exception org.apache.tools.ant.BuildException Something is stopping the
  +     * @exception org.apache.tools.ant.TaskException Something is stopping the
        *      build...
        */
       public void execute()
  -        throws org.apache.tools.ant.BuildException
  +        throws org.apache.tools.ant.TaskException
       {
           Project aProj = getProject();
           int result = 0;
   
           if( repository == null || repository.trim().equals( "" ) )
  -            throw new BuildException( "Required argument repository not specified" );
  +            throw new TaskException( "Required argument repository not specified" );
   
           // Check workspace exists
           // Launch PCLI listversionedfiles -z -aw
  @@ -351,9 +352,9 @@
               Enumeration e = getPvcsprojects().elements();
               while( e.hasMoreElements() )
               {
  -                String projectName = ( ( PvcsProject )e.nextElement() ).getName();
  +                String projectName = ( (PvcsProject)e.nextElement() ).getName();
                   if( projectName == null || ( projectName.trim() ).equals( "" ) )
  -                    throw new BuildException( "name is a required attribute of pvcsproject" );
  +                    throw new TaskException( "name is a required attribute of pvcsproject" );
                   commandLine.createArgument().setValue( projectName );
               }
           }
  @@ -370,11 +371,11 @@
               if( result != 0 && !ignorerc )
               {
                   String msg = "Failed executing: " + commandLine.toString();
  -                throw new BuildException( msg );
  +                throw new TaskException( msg );
               }
   
               if( !tmp.exists() )
  -                throw new BuildException( "Communication between ant and pvcs failed. No output generated from executing PVCS commandline interface \"pcli\" and \"get\"" );
  +                throw new TaskException( "Communication between ant and pvcs failed. No output generated from executing PVCS commandline interface \"pcli\" and \"get\"" );
   
               // Create folders in workspace
               log( "Creating folders", Project.MSG_INFO );
  @@ -412,24 +413,24 @@
               if( result != 0 && !ignorerc )
               {
                   String msg = "Failed executing: " + commandLine.toString() + ". Return code was " + result;
  -                throw new BuildException( msg );
  +                throw new TaskException( msg );
               }
   
           }
           catch( FileNotFoundException e )
           {
               String msg = "Failed executing: " + commandLine.toString() + ". Exception: " + e.getMessage();
  -            throw new BuildException( msg );
  +            throw new TaskException( msg );
           }
           catch( IOException e )
           {
               String msg = "Failed executing: " + commandLine.toString() + ". Exception: " + e.getMessage();
  -            throw new BuildException( msg );
  +            throw new TaskException( msg );
           }
           catch( ParseException e )
           {
               String msg = "Failed executing: " + commandLine.toString() + ". Exception: " + e.getMessage();
  -            throw new BuildException( msg );
  +            throw new TaskException( msg );
           }
           finally
           {
  @@ -444,7 +445,6 @@
           }
       }
   
  -
       protected int runCmd( Commandline cmd, ExecuteStreamHandler out )
       {
           try
  @@ -459,7 +459,7 @@
           catch( java.io.IOException e )
           {
               String msg = "Failed executing: " + cmd.toString() + ". Exception: " + e.getMessage();
  -            throw new BuildException( msg );
  +            throw new TaskException( msg );
           }
       }
   
  @@ -495,7 +495,7 @@
                   line.startsWith( getLineStart() ) )
               {
                   Object[] objs = mf.parse( line );
  -                String f = ( String )objs[1];
  +                String f = (String)objs[ 1 ];
                   // Extract the name of the directory from the filename
                   int index = f.lastIndexOf( File.separator );
                   if( index > -1 )
  @@ -521,7 +521,7 @@
                   else
                   {
                       log( "File separator problem with " + line,
  -                        Project.MSG_WARN );
  +                         Project.MSG_WARN );
                   }
               }
               else
  
  
  
  1.2       +0 -1      jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/pvcs/PvcsProject.java
  
  Index: PvcsProject.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/pvcs/PvcsProject.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PvcsProject.java	2001/12/15 12:06:30	1.1
  +++ PvcsProject.java	2001/12/16 00:34:52	1.2
  @@ -7,7 +7,6 @@
    */
   package org.apache.tools.ant.taskdefs.optional.pvcs;
   
  -
   /**
    * class to handle <pvcsprojec> elements
    *
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>