]> source.dussan.org Git - archiva.git/blob
e284ab1790c90cd225e0c3fff56c992e21680e22
[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 java.io.File;
23 import java.io.IOException;
24 import java.util.List;
25
26 /**
27  * Event for creating a file from a string content.
28  *
29  * @version $Id$
30  */
31 public class CreateFileEvent
32     extends AbstractTransactionEvent
33 {
34     private final File destination;
35
36     private final String content;
37
38     /**
39      * 
40      * @param content
41      * @param destination
42      * @param digesters {@link List}<{@link Digester}> digesters to use for checksumming 
43      */
44     public CreateFileEvent( String content, File destination, List digesters )
45     {
46         super( digesters );
47         this.content = content;
48         this.destination = destination;
49     }
50
51     public void commit()
52         throws IOException
53     {
54         createBackup( destination );
55
56         mkDirs( destination.getParentFile() );
57
58         if ( !destination.exists() && !destination.createNewFile() )
59         {
60             throw new IOException( "Unable to create new file" );
61         }
62
63         writeStringToFile( destination, content );
64
65         createChecksums( destination, true );
66     }
67
68     public void rollback()
69         throws IOException
70     {
71         destination.delete();
72
73         revertFilesCreated();
74
75         revertMkDirs();
76
77         restoreBackups();
78     }
79 }