]> source.dussan.org Git - archiva.git/blob
94d1b8f5ae095677ac873ca2967e5816d9ea2b38
[archiva.git] /
1 package org.apache.maven.archiva.converter.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
24 import java.io.File;
25 import java.io.IOException;
26 import java.util.ArrayList;
27 import java.util.Collections;
28 import java.util.List;
29
30 /**
31  * Abstract class for the TransactionEvents
32  *
33  * @author Edwin Punzalan
34  */
35 public abstract class AbstractTransactionEvent
36     implements TransactionEvent
37 {
38     private File backup;
39
40     private List createdDirs;
41
42     /**
43      * Method that creates a directory as well as all the parent directories needed
44      *
45      * @param dir The File directory to be created
46      * @throws IOException when an unrecoverable error occurred
47      */
48     protected void mkDirs( File dir )
49         throws IOException
50     {
51         List createDirs = new ArrayList();
52
53         File parent = dir;
54         while ( !parent.exists() || !parent.isDirectory() )
55         {
56             createDirs.add( parent );
57
58             parent = parent.getParentFile();
59         }
60
61         createdDirs = new ArrayList();
62
63         while ( !createDirs.isEmpty() )
64         {
65             File directory = (File) createDirs.remove( createDirs.size() - 1 );
66
67             if ( directory.mkdir() )
68             {
69                 createdDirs.add( directory );
70             }
71             else
72             {
73                 throw new IOException( "Failed to create directory: " + directory.getAbsolutePath() );
74             }
75         }
76     }
77
78     protected void revertMkDirs()
79         throws IOException
80     {
81         if ( createdDirs != null )
82         {
83             Collections.reverse( createdDirs );
84
85             while ( !createdDirs.isEmpty() )
86             {
87                 File dir = (File) createdDirs.remove( 0 );
88
89                 if ( dir.isDirectory() && dir.list().length == 0 )
90                 {
91                     FileUtils.deleteDirectory( dir );
92                 }
93                 else
94                 {
95                     //cannot rollback created directory if it still contains files
96                     break;
97                 }
98             }
99         }
100     }
101
102     protected void createBackup( File file )
103         throws IOException
104     {
105         if ( file.exists() && file.isFile() )
106         {
107             backup = File.createTempFile( "temp-", ".backup" );
108
109             FileUtils.copyFile( file, backup );
110
111             backup.deleteOnExit();
112         }
113     }
114
115     protected void restoreBackup( File file )
116         throws IOException
117     {
118         if ( backup != null )
119         {
120             FileUtils.copyFile( backup, file );
121         }
122     }
123 }