]> source.dussan.org Git - archiva.git/blob
956f9fe3085e3c7a9c0ccd4775643387f6e7514d
[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  *
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     @Override
54     public void commit()
55         throws IOException
56     {
57         createBackup( destination );
58
59         mkDirs( destination.getParentFile() );
60
61         if ( !destination.exists() && !destination.createNewFile() )
62         {
63             throw new IOException( "Unable to create new file" );
64         }
65
66         writeStringToFile( destination, content );
67
68         createChecksums( destination, true );
69     }
70
71     @Override
72     public void rollback()
73         throws IOException
74     {
75         destination.delete();
76
77         revertFilesCreated();
78
79         revertMkDirs();
80
81         restoreBackups();
82     }
83 }