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
|
/*
* Copyright 2011 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.data.util;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.nio.charset.Charset;
/**
* Property implementation for wrapping a text file.
*
* Supports reading and writing of a File from/to String.
*
* {@link ValueChangeListener}s are supported, but only fire when
* setValue(Object) is explicitly called. {@link ReadOnlyStatusChangeListener}s
* are supported but only fire when setReadOnly(boolean) is explicitly called.
*
*/
@SuppressWarnings("serial")
public class TextFileProperty extends AbstractProperty<String> {
private File file;
private Charset charset = null;
/**
* Wrap given file with property interface.
*
* Setting the file to null works, but getValue() will return null.
*
* @param file
* File to be wrapped.
*/
public TextFileProperty(File file) {
this.file = file;
}
/**
* Wrap the given file with the property interface and specify character
* set.
*
* Setting the file to null works, but getValue() will return null.
*
* @param file
* File to be wrapped.
* @param charset
* Charset to be used for reading and writing the file.
*/
public TextFileProperty(File file, Charset charset) {
this.file = file;
this.charset = charset;
}
/*
* (non-Javadoc)
*
* @see com.vaadin.data.Property#getType()
*/
@Override
public Class<String> getType() {
return String.class;
}
/*
* (non-Javadoc)
*
* @see com.vaadin.data.Property#getValue()
*/
@Override
public String getValue() {
if (file == null) {
return null;
}
try {
FileInputStream fis = new FileInputStream(file);
InputStreamReader isr = charset == null ? new InputStreamReader(fis)
: new InputStreamReader(fis, charset);
BufferedReader r = new BufferedReader(isr);
StringBuilder b = new StringBuilder();
char buf[] = new char[8 * 1024];
int len;
while ((len = r.read(buf)) != -1) {
b.append(buf, 0, len);
}
r.close();
isr.close();
fis.close();
return b.toString();
} catch (FileNotFoundException e) {
return null;
} catch (IOException e) {
throw new RuntimeException(e);
}
}
/*
* (non-Javadoc)
*
* @see com.vaadin.data.Property#isReadOnly()
*/
@Override
public boolean isReadOnly() {
return file == null || super.isReadOnly() || !file.canWrite();
}
/*
* (non-Javadoc)
*
* @see com.vaadin.data.Property#setValue(java.lang.Object)
*/
@Override
public void setValue(String newValue) throws ReadOnlyException {
if (isReadOnly()) {
throw new ReadOnlyException();
}
if (file == null) {
return;
}
try {
FileOutputStream fos = new FileOutputStream(file);
OutputStreamWriter osw = charset == null ? new OutputStreamWriter(
fos) : new OutputStreamWriter(fos, charset);
BufferedWriter w = new BufferedWriter(osw);
w.append(newValue.toString());
w.flush();
w.close();
osw.close();
fos.close();
fireValueChange();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
|