Clover coverage report - Ant Coverage
Coverage timestamp: Tue Apr 8 2003 20:43:55 EST
file stats: LOC: 131   Methods: 5
NCLOC: 52   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Copyfile.java 90% 88.9% 80% 87.9%
 1   
 /*
 2   
  * The Apache Software License, Version 1.1
 3   
  *
 4   
  * Copyright (c) 2000,2002 The Apache Software Foundation.  All rights
 5   
  * reserved.
 6   
  *
 7   
  * Redistribution and use in source and binary forms, with or without
 8   
  * modification, are permitted provided that the following conditions
 9   
  * are met:
 10   
  *
 11   
  * 1. Redistributions of source code must retain the above copyright
 12   
  *    notice, this list of conditions and the following disclaimer.
 13   
  *
 14   
  * 2. Redistributions in binary form must reproduce the above copyright
 15   
  *    notice, this list of conditions and the following disclaimer in
 16   
  *    the documentation and/or other materials provided with the
 17   
  *    distribution.
 18   
  *
 19   
  * 3. The end-user documentation included with the redistribution, if
 20   
  *    any, must include the following acknowlegement:
 21   
  *       "This product includes software developed by the
 22   
  *        Apache Software Foundation (http://www.apache.org/)."
 23   
  *    Alternately, this acknowlegement may appear in the software itself,
 24   
  *    if and wherever such third-party acknowlegements normally appear.
 25   
  *
 26   
  * 4. The names "Ant" and "Apache Software
 27   
  *    Foundation" must not be used to endorse or promote products derived
 28   
  *    from this software without prior written permission. For written
 29   
  *    permission, please contact apache@apache.org.
 30   
  *
 31   
  * 5. Products derived from this software may not be called "Apache"
 32   
  *    nor may "Apache" appear in their names without prior written
 33   
  *    permission of the Apache Group.
 34   
  *
 35   
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 36   
  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 37   
  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 38   
  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 39   
  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 40   
  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 41   
  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 42   
  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 43   
  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 44   
  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 45   
  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 46   
  * SUCH DAMAGE.
 47   
  * ====================================================================
 48   
  *
 49   
  * This software consists of voluntary contributions made by many
 50   
  * individuals on behalf of the Apache Software Foundation.  For more
 51   
  * information on the Apache Software Foundation, please see
 52   
  * <http://www.apache.org/>.
 53   
  */
 54   
 
 55   
 package org.apache.tools.ant.taskdefs;
 56   
 
 57   
 import java.io.File;
 58   
 import java.io.IOException;
 59   
 import org.apache.tools.ant.BuildException;
 60   
 import org.apache.tools.ant.Project;
 61   
 import org.apache.tools.ant.Task;
 62   
 
 63   
 /**
 64   
  * Copies a file.
 65   
  *
 66   
  * @author duncan@x180.com
 67   
  *
 68   
  * @since Ant 1.1
 69   
  *
 70   
  * @deprecated The copyfile task is deprecated since Ant 1.2.  Use
 71   
  * copy instead.
 72   
  */
 73   
 
 74   
 public class Copyfile extends Task {
 75   
 
 76   
     private File srcFile;
 77   
     private File destFile;
 78   
     private boolean filtering = false;
 79   
     private boolean forceOverwrite = false;
 80   
  
 81  4
     public void setSrc(File src) {
 82  4
         srcFile = src;
 83   
     }
 84   
 
 85  1
     public void setForceoverwrite(boolean force) {
 86  1
         forceOverwrite = force;
 87   
     }
 88   
 
 89  4
     public void setDest(File dest) {
 90  4
         destFile = dest;
 91   
     }
 92   
 
 93  0
     public void setFiltering(String filter) {
 94  0
         filtering = Project.toBoolean(filter);
 95   
     }
 96   
 
 97  6
     public void execute() throws BuildException {
 98  6
         log("DEPRECATED - The copyfile task is deprecated.  Use copy instead.");
 99   
 
 100  6
         if (srcFile == null) {
 101  2
             throw new BuildException("The src attribute must be present.", 
 102   
                                      getLocation());
 103   
         }
 104   
         
 105  4
         if (!srcFile.exists()) {
 106  0
             throw new BuildException("src " + srcFile.toString()
 107   
                                      + " does not exist.", getLocation());
 108   
         }
 109   
 
 110  4
         if (destFile == null) {
 111  1
             throw new BuildException("The dest attribute must be present.", 
 112   
                                      getLocation());
 113   
         }
 114   
 
 115  3
         if (srcFile.equals(destFile)) {
 116  1
             log("Warning: src == dest", Project.MSG_WARN);
 117   
         }
 118   
 
 119  3
         if (forceOverwrite 
 120   
             || srcFile.lastModified() > destFile.lastModified()) {
 121  2
             try {
 122  2
                 getProject().copyFile(srcFile, destFile, filtering, forceOverwrite);
 123   
             } catch (IOException ioe) {
 124  1
                 String msg = "Error copying file: " + srcFile.getAbsolutePath()
 125   
                     + " due to " + ioe.getMessage();
 126  1
                 throw new BuildException(msg);
 127   
             }
 128   
         }
 129   
     }
 130   
 }
 131