]> source.dussan.org Git - archiva.git/blob
585c9cc28a5a9775e81902d522f04d111b45038a
[archiva.git] /
1 package org.apache.maven.archiva.transaction;
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 org.apache.commons.io.FileUtils;
23 import org.codehaus.plexus.digest.Digester;
24
25 import java.io.File;
26 import java.io.IOException;
27 import java.util.Iterator;
28 import java.util.List;
29
30 /**
31  * Event to copy a file.
32  *
33  * @version $Id$
34  */
35 public class CopyFileEvent
36     extends AbstractTransactionEvent
37 {
38     private final File source;
39
40     private final File destination;
41
42     /**
43      * 
44      * @param source
45      * @param destination
46      * @param digesters {@link List}<{@link Digester}> digesters to use for checksumming 
47      */
48     public CopyFileEvent( File source, File destination, List digesters )
49     {
50         super( digesters );
51         this.source = source;
52         this.destination = destination;
53     }
54
55     public void commit()
56         throws IOException
57     {
58         createBackup( destination );
59
60         mkDirs( destination.getParentFile() );
61
62         FileUtils.copyFile( source, destination );
63
64         createChecksums( destination, true );
65         copyChecksums();
66
67         copyChecksum( "asc" );
68     }
69
70     /**
71      * Copy checksums of source file with all digesters if exist
72      * 
73      * @throws IOException
74      */
75     private void copyChecksums()
76         throws IOException
77     {
78         Iterator it = getDigesters().iterator();
79         while ( it.hasNext() )
80         {
81             Digester digester = (Digester) it.next();
82             copyChecksum( getDigesterFileExtension( digester ) );
83         }
84     }
85
86     /**
87      * Copy checksum of source file with extension provided if exists
88      * 
89      * @param extension
90      * @return whether the checksum exists or not 
91      * @throws IOException
92      */
93     private boolean copyChecksum( String extension )
94         throws IOException
95     {
96         File checksumSource = new File( source.getAbsolutePath() + "." + extension );
97         if ( checksumSource.exists() )
98         {
99             File checksumDestination = new File( destination.getAbsolutePath() + "." + extension );
100             FileUtils.copyFile( checksumSource, checksumDestination );
101             return true;
102         }
103         return false;
104     }
105
106     public void rollback()
107         throws IOException
108     {
109         destination.delete();
110
111         revertFilesCreated();
112
113         revertMkDirs();
114
115         restoreBackups();
116     }
117 }