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