AtomicFile.java
3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package android.support.v4.util;
import android.util.Log;
import java.io.File;
import java.io.FileDescriptor;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class AtomicFile
{
private final File a;
private final File b;
public AtomicFile(File paramFile)
{
this.a = paramFile;
this.b = new File(paramFile.getPath() + ".bak");
}
private static boolean a(FileOutputStream paramFileOutputStream)
{
if (paramFileOutputStream != null) {}
try
{
paramFileOutputStream.getFD().sync();
return true;
}
catch (IOException paramFileOutputStream) {}
return false;
}
public void delete()
{
this.a.delete();
this.b.delete();
}
public void failWrite(FileOutputStream paramFileOutputStream)
{
if (paramFileOutputStream != null) {
a(paramFileOutputStream);
}
try
{
paramFileOutputStream.close();
this.a.delete();
this.b.renameTo(this.a);
return;
}
catch (IOException paramFileOutputStream)
{
Log.w("AtomicFile", "failWrite: Got exception:", paramFileOutputStream);
}
}
public void finishWrite(FileOutputStream paramFileOutputStream)
{
if (paramFileOutputStream != null) {
a(paramFileOutputStream);
}
try
{
paramFileOutputStream.close();
this.b.delete();
return;
}
catch (IOException paramFileOutputStream)
{
Log.w("AtomicFile", "finishWrite: Got exception:", paramFileOutputStream);
}
}
public File getBaseFile()
{
return this.a;
}
public FileInputStream openRead()
throws FileNotFoundException
{
if (this.b.exists())
{
this.a.delete();
this.b.renameTo(this.a);
}
return new FileInputStream(this.a);
}
public byte[] readFully()
throws IOException
{
int i = 0;
FileInputStream localFileInputStream = openRead();
try
{
Object localObject1 = new byte[localFileInputStream.available()];
int j = localFileInputStream.read((byte[])localObject1, i, localObject1.length - i);
if (j <= 0) {
return (byte[])localObject1;
}
i = j + i;
j = localFileInputStream.available();
if (j > localObject1.length - i)
{
byte[] arrayOfByte = new byte[j + i];
System.arraycopy(localObject1, 0, arrayOfByte, 0, i);
localObject1 = arrayOfByte;
}
for (;;)
{
break;
}
}
finally
{
localFileInputStream.close();
}
}
public FileOutputStream startWrite()
throws IOException
{
if (this.a.exists())
{
if (this.b.exists()) {
break label85;
}
if (!this.a.renameTo(this.b)) {
Log.w("AtomicFile", "Couldn't rename file " + this.a + " to backup file " + this.b);
}
}
for (;;)
{
try
{
FileOutputStream localFileOutputStream1 = new FileOutputStream(this.a);
return localFileOutputStream1;
}
catch (FileNotFoundException localFileNotFoundException1)
{
label85:
if (this.a.getParentFile().mkdirs()) {
continue;
}
throw new IOException("Couldn't create directory " + this.a);
try
{
FileOutputStream localFileOutputStream2 = new FileOutputStream(this.a);
return localFileOutputStream2;
}
catch (FileNotFoundException localFileNotFoundException2)
{
throw new IOException("Couldn't create " + this.a);
}
}
this.a.delete();
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v4/util/AtomicFile.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/