Utility class for synchronizing files/directories : File Monoitor « File Input Output « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » File Input Output » File MonoitorScreenshots 
Utility class for synchronizing files/directories
    

//$Id: FileHelper.java 15522 2008-11-05 20:06:43Z hardy.ferentschik $

//Revised from hibernate search util
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;


/**
 * Utility class for synchronizing files/directories.
 *
 @author Emmanuel Bernard
 @author Sanne Grinovero
 @author Hardy Ferentschik
 */
public abstract class FileHelper {

  private static final int FAT_PRECISION = 2000;
  public static final long DEFAULT_COPY_BUFFER_SIZE = 16 1024 1024// 16 MB


  public static boolean areInSync(File source, File destinationthrows IOException {
    if source.isDirectory() ) {
      if !destination.exists() ) {
        return false;
      }
      else if !destination.isDirectory() ) {
        throw new IOException(
            "Source and Destination not of the same type:"
                + source.getCanonicalPath() " , " + destination.getCanonicalPath()
        );
      }
      String[] sources = source.list();
      Set<String> srcNames = new HashSet<String>Arrays.asListsources ) );
      String[] dests = destination.list();

      // check for files in destination and not in source
      for String fileName : dests ) {
        if !srcNames.containsfileName ) ) {
          return false;
        }
      }

      boolean inSync = true;
      for String fileName : sources ) {
        File srcFile = new Filesource, fileName );
        File destFile = new Filedestination, fileName );
        if !areInSyncsrcFile, destFile ) ) {
          inSync = false;
          break;
        }
      }
      return inSync;
    }
    else {
      if destination.exists() && destination.isFile() ) {
        long sts = source.lastModified() / FAT_PRECISION;
        long dts = destination.lastModified() / FAT_PRECISION;
        return sts == dts;
      }
      else {
        return false;
      }
    }
  }

  public static void synchronize(File source, File destination, boolean smartthrows IOException {
    synchronizesource, destination, smart, DEFAULT_COPY_BUFFER_SIZE );
  }

  public static void synchronize(File source, File destination, boolean smart, long chunkSizethrows IOException {
    if chunkSize <= ) {
      System.out.println("Chunk size must be positive: using default value." );
      chunkSize = DEFAULT_COPY_BUFFER_SIZE;
    }
    if source.isDirectory() ) {
      if !destination.exists() ) {
        if !destination.mkdirs() ) {
          throw new IOException"Could not create path " + destination );
        }
      }
      else if !destination.isDirectory() ) {
        throw new IOException(
            "Source and Destination not of the same type:"
                + source.getCanonicalPath() " , " + destination.getCanonicalPath()
        );
      }
      String[] sources = source.list();
      Set<String> srcNames = new HashSet<String>Arrays.asListsources ) );
      String[] dests = destination.list();

      //delete files not present in source
      for String fileName : dests ) {
        if !srcNames.containsfileName ) ) {
          deletenew Filedestination, fileName ) );
        }
      }
      //copy each file from source
      for String fileName : sources ) {
        File srcFile = new Filesource, fileName );
        File destFile = new Filedestination, fileName );
        synchronizesrcFile, destFile, smart, chunkSize );
      }
    }
    else {
      if destination.exists() && destination.isDirectory() ) {
        deletedestination );
      }
      if destination.exists() ) {
        long sts = source.lastModified() / FAT_PRECISION;
        long dts = destination.lastModified() / FAT_PRECISION;
        //do not copy if smart and same timestamp and same length
        if !smart || sts == || sts != dts || source.length() != destination.length() ) {
          copyFilesource, destination, chunkSize );
        }
      }
      else {
        copyFilesource, destination, chunkSize );
      }
    }
  }

  private static void copyFile(File srcFile, File destFile, long chunkSizethrows IOException {
    FileInputStream is = null;
    FileOutputStream os = null;
    try {
      is = new FileInputStreamsrcFile );
      FileChannel iChannel = is.getChannel();
      os = new FileOutputStreamdestFile, false );
      FileChannel oChannel = os.getChannel();
      long doneBytes = 0L;
      long todoBytes = srcFile.length();
      while todoBytes != 0L ) {
        long iterationBytes = Math.mintodoBytes, chunkSize );
        long transferredLength = oChannel.transferFromiChannel, doneBytes, iterationBytes );
        if iterationBytes != transferredLength ) {
          throw new IOException(
              "Error during file transfer: expected "
                  + iterationBytes + " bytes, only " + transferredLength + " bytes copied."
          );
        }
        doneBytes += transferredLength;
        todoBytes -= transferredLength;
      }
    }
    finally {
      if is != null ) {
        is.close();
      }
      if os != null ) {
        os.close();
      }
    }
    boolean successTimestampOp = destFile.setLastModifiedsrcFile.lastModified() );
    if !successTimestampOp ) {
      System.out.println("Could not change timestamp for {}. Index synchronization may be slow. " + destFile );
    }
  }

  public static void delete(File file) {
    if file.isDirectory() ) {
      for File subFile : file.listFiles() ) {
        deletesubFile );
      }
    }
    if file.exists() ) {
      if !file.delete() ) {
        System.out.println"Could not delete {}" + file );
      }
    }
  }
}

   
    
    
    
  
Related examples in the same category
1. File Monitor Demo
2. Monitoring a File for changes.
3. Monitor files for changes
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.