]> source.dussan.org Git - archiva.git/blob
283ee60fd94854b498949576bd86e596038eb30b
[archiva.git] /
1 package org.apache.maven.repository.converter.transaction;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import org.codehaus.plexus.util.FileUtils;
20
21 import java.io.File;
22 import java.io.IOException;
23
24 /**
25  * Event for creating a file from a string content.
26  *
27  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
28  */
29 public class CreateFileEvent
30     extends AbstractTransactionEvent
31 {
32     private final File destination;
33
34     private final String content;
35
36     public CreateFileEvent( String content, File destination )
37     {
38         this.content = content;
39         this.destination = destination;
40     }
41
42     public void commit()
43         throws IOException
44     {
45         createBackup( destination );
46
47         mkDirs( destination.getParentFile() );
48
49         if ( !destination.exists() && !destination.createNewFile() )
50         {
51             throw new IOException( "Unable to create new file" );
52         }
53
54         FileUtils.fileWrite( destination.getAbsolutePath(), content );
55     }
56
57     public void rollback()
58         throws IOException
59     {
60         FileUtils.fileDelete( destination.getAbsolutePath() );
61
62         revertMkDirs();
63
64         restoreBackup( destination );
65     }
66 }