summaryrefslogtreecommitdiffstats
path: root/logo/src/xlogo/storage/Storable.java
blob: 2ba535080a2644b85828813d1559f5e907eb146c (plain)
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
/*
 * XLogo4Schools - A Logo Interpreter specialized for use in schools, based on XLogo by Loic Le Coq
 * Copyright (C) 2013 Marko Zivkovic
 * Contact Information: marko88zivkovic at gmail dot com
 * 
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version. This program is distributed in the hope that it will be
 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
 * Public License for more details. You should have received a copy of the
 * GNU General Public License along with this program; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301, USA.
 * 
 * This Java source code belongs to XLogo4Schools, written by Marko Zivkovic
 * during his Bachelor thesis at the computer science department of ETH Zurich,
 * in the year 2013 and/or during future work.
 * 
 * It is a reengineered version of XLogo written by Loic Le Coq, published
 * under the GPL License at http://xlogo.tuxfamily.org/
 * 
 * Contents of this file were entirely written by Marko Zivkovic
 */

package xlogo.storage;

import java.io.File;
import java.io.IOException;
import java.io.Serializable;

public abstract class Storable implements Serializable {
	/**
	 * 
	 */
	private static final long	serialVersionUID	= 3506253939129765438L;
	
	/**
	 * The file's name with extension
	 */
	private String				fileName;
	
	/**
	 * The Directory where this is stored
	 */
	private File				location;
	
	/**
	 * Dirty : an object is dirty if it was changed since it was created, loaded or stored the last time.
	 */
	private transient boolean	dirty				= true;
	
	/**
	 * If true, the storable will only be stored after it has been marked dirty (thus, if an explicit change happened to it)
	 */
	private boolean				isStoringDeferred	= false;
	
	/**
	 * Will not be stored if virtual.
	 */
	private transient boolean	isVirtual			= false;
	
	/**
	 * @see #isPersisted()
	 */
	private boolean				isPersisted			= false;

	
	/*
	 * PATH BUILDERS
	 */
	
	public static File getFile(File dir, String fileName) {
		return new File(dir.toString() + File.separator + fileName);
	}
	
	public static File getDirectory(File prefix, String dirName) {
		return new File(prefix.toString() + File.separator + dirName);
	}
	
	/*
	 * Abstract
	 */
	
	/**
	 * Store this object to the file specified by {@link #getFilePath()} if it is dirty and storing is not deferred, but only if it is not virtual.
	 * @throws IOException
	 */
	public void store() {
		if (!isStoringDeferred()){
			if (isDirty() && !isVirtual()){
				setPersisted(false);
				try {
					File file = getFilePath();
					if (!mkParentDirs(file)){
						return;
					}
					storeCopyToFile(file);
				}
				catch (Exception ignore) { }
				setPersisted(true);
			}
		} else {
			setStoringDeferred(false);
		}
	}
	
	/**
	 * Persist the contents of this {@link Storable} to the specified file.
	 * @param file
	 * @throws IOException
	 * @throws IllegalArgumentException
	 */
	public abstract void storeCopyToFile(File file) throws IOException, IllegalArgumentException;
	
	/**
	 * Store this object to the specified file, regardless of whether this is virtual or not.
	 * @param file
	 * @throws IOException
	 * @throws IllegalArgumentException - null is not accepted
	 */
	
	/*
	 * file name & location
	 */
	
	public abstract String getFileNameExtension();
	
	public String getFileNamePrefix(){
		return "";
	}
	
	public String getFileName() {
		return getFileNamePrefix() + getPlainName() + getFileNameExtension();
	}
	
	/**
	 * @return FileName without file extension
	 */
	public String getPlainName() {
		return fileName;
	}
	
	/**
	 * If this exists on the file system, that file will be renamed. <p>
	 * If newFileName already existed, it is deleted first.
	 * @param newFileName - must not be null and must satisfy {@link #checkLegalName(String)}
	 * @throws IllegalArgumentException - If the provided name is not legal or null.
	 */
	public void setPlainName(String newFileName) throws IllegalArgumentException
	{
		if (newFileName == null || newFileName.length() == 0)
			throw new IllegalArgumentException("File name must not be null or empty.");
		
		if (!checkLegalName(newFileName))
			throw new IllegalArgumentException("The chosen file name contains illegal characters.");
		
		String ext = getFileNameExtension();
		String oldName = getPlainName();
		String newName = newFileName.endsWith(ext) && newFileName.length() > ext.length() ? newFileName.substring(0,
				newFileName.length() - ext.length()) : newFileName;
		
		if (newName.equals(oldName) && oldName != null)
			return;
		
		if (isVirtual || oldName == null) {
			this.fileName = newFileName;
			return;
		}
		
		File oldPath = getFilePath();
		this.fileName = newName;
		
		if (!oldPath.exists())
			return;
		
		File newPath = getFilePath();
		if (newPath.exists())
			newPath.delete();
		
		oldPath.renameTo(newPath);
	}
	
	/**
	 * @return the directory where this should be stored to.
	 */
	public File getLocation() {
		return location;
	}
	
	/**
	 * To set null or a file that is not a directory or a directory with no write permissions is an error, as long as this is not virtual.<br>
	 * Setting location has no effect if this is virtual.<br>
	 * @param location - the directory where this should be stored to. If null, location will be set to user home directory
	 * @throws IOException 
	 * @throws IOException If the specified location is not a directory or no write permissions exist, or the chosen name is not legal.
	 */
	public void setLocation(File location) throws IllegalArgumentException {
		if (isVirtual) { return; }
		
		if (location == null) { 
			location = new File(System.getProperty("user.home"));
		}
		
		this.location = location;
		makeDirty();
	}
	
	/**
	 * If the specified location does not exist yet, it is created using mkdirs.
	 */
	public void mkDirs() {
		mkDirs(location);
	}
	
	public void mkDirs(File location) {
		if (!location.isDirectory()) {
			location.mkdirs();
		}
		if (!location.isDirectory() || !location.canWrite()) { throw new IllegalArgumentException(
				"Cannot store this to specified location : " + location.toString()); }
	}
	
	public boolean mkParentDirs(File file) {
		File parent = file.getParentFile();
		if (!parent.exists()) {
			parent.mkdirs();
		}

		if (!parent.isDirectory() || !parent.canWrite()) { 
			return false;
		}
		return true;
	}
	
	/**
	 * @return the file where this should be stored to. Returns null if {@link getLocation()} returns null.
	 */
	public File getFilePath() {
		if (getLocation() == null)
			return null;
		return getFile(getLocation(), getFileName());
	}
	
	/**
	 * @return whether the file specified by {@link #getFilePath()} exists.
	 */
	public boolean existsPhysically() {
		if (getFilePath() == null)
			return false;
		
		return getFilePath().exists();
	}
	
	/*
	 * isDirty
	 */
	
	public boolean isDirty() {
		return dirty;
	}
	
	/**
	 * Should be called from every setter that sets a property that should be stored later
	 * @see StorableObject#makeClean()
	 */
	protected void makeDirty() {
		dirty = true;
		setStoringDeferred(false);
	}
	
	/**
	 * Should be called whenever this was synchronized with its version on the file system (load or store)
	 * @see StorableObject#makeDirty()
	 */
	protected void makeClean() {
		dirty = false;
	}
	
	/*
	 * Deferred
	 */
	
	public boolean isStoringDeferred() {
		return isStoringDeferred;
	}

	public void setStoringDeferred(boolean isDeferred) {
		this.isStoringDeferred = isDeferred;
	}
	
	/*
	 * isVirtual
	 */
	
	/**
	 * @see #isVirtual()
	 */
	protected void makeVirtual() {
		isVirtual = true;
	}
	
	/**
	 * A virtual object will not be stored on the file system, even though {@link store()} was called.
	 * This allows to use the application without having an actual user account and without automatic saving.
	 * @return
	 */
	public boolean isVirtual() {
		return isVirtual;
	}
	
	/*
	 * isPersisted
	 */
	
	/**
	 * @see #isPersisted()
	 * @param isPersisted
	 */
	protected void setPersisted(boolean isPersisted){
		this.isPersisted = isPersisted;
	}
	
	/**
	 * Whether the last attempt to store or load the object was successful
	 * @return
	 */
	public boolean isPersisted(){
		return isPersisted;
	}
	
	// The best I found : http://stackoverflow.com/questions/893977/java-how-to-find-out-whether-a-file-name-is-valid
	// some windows specific chars are not contained...
	public static final String	ILLEGAL_NAME_CHARACTERS	= "/\n\r\t\0\f`?*\\<>|\":";
	
	public static boolean checkLegalName(String name) {
		if (name == null || name.length() == 0)
			return false;
		
		//StringTokenizer check = new StringTokenizer(name, ILLEGAL_NAME_CHARACTERS, true);
		//return (check.countTokens() == 1);
		
		for (char c : name.toCharArray()) {
			if (ILLEGAL_NAME_CHARACTERS.indexOf(c) > -1)
				return false;
		}
		
		return true;
	}
	
}