Version 4.0.0: java.awt dependencies move
[nikiroo-utils.git] / src / be / nikiroo / utils / resources / Bundle.java
CommitLineData
ec1f3444
NR
1package be.nikiroo.utils.resources;
2
3import java.io.BufferedWriter;
4import java.io.File;
5import java.io.FileInputStream;
6import java.io.FileOutputStream;
7import java.io.IOException;
8import java.io.InputStreamReader;
9import java.io.OutputStreamWriter;
10import java.io.Reader;
ec1f3444
NR
11import java.io.Writer;
12import java.lang.reflect.Field;
13import java.util.ArrayList;
62c9ec78 14import java.util.HashMap;
ec1f3444
NR
15import java.util.List;
16import java.util.Locale;
62c9ec78 17import java.util.Map;
ec1f3444
NR
18import java.util.MissingResourceException;
19import java.util.PropertyResourceBundle;
20import java.util.ResourceBundle;
21
ec1f3444 22/**
62c9ec78 23 * This class encapsulate a {@link ResourceBundle} in UTF-8. It allows to
ec1f3444
NR
24 * retrieve values associated to an enumeration, and allows some additional
25 * methods.
62c9ec78
NR
26 * <p>
27 * It also sports a writable change map, and you can save back the
28 * {@link Bundle} to file with {@link Bundle#updateFile(String)}.
ec1f3444 29 *
ec1f3444
NR
30 * @param <E>
31 * the enum to use to get values out of this class
db31c358
NR
32 *
33 * @author niki
ec1f3444 34 */
db31c358 35
ec1f3444 36public class Bundle<E extends Enum<E>> {
db31c358 37 /** The type of E. */
ec1f3444 38 protected Class<E> type;
db31c358
NR
39 /**
40 * The {@link Enum} associated to this {@link Bundle} (all the keys used in
41 * this {@link Bundle} will be of this type).
42 */
43 protected Enum<?> keyType;
44
45 private TransBundle<E> descriptionBundle;
46
47 /** R/O map */
48 private Map<String, String> map;
49 /** R/W map */
50 private Map<String, String> changeMap;
ec1f3444
NR
51
52 /**
53 * Create a new {@link Bundles} of the given name.
54 *
55 * @param type
56 * a runtime instance of the class of E
ec1f3444
NR
57 * @param name
58 * the name of the {@link Bundles}
db31c358
NR
59 * @param descriptionBundle
60 * the description {@link TransBundle}, that is, a
61 * {@link TransBundle} dedicated to the description of the values
62 * of the given {@link Bundle} (can be NULL)
ec1f3444 63 */
db31c358
NR
64 protected Bundle(Class<E> type, Enum<?> name,
65 TransBundle<E> descriptionBundle) {
ec1f3444 66 this.type = type;
db31c358
NR
67 this.keyType = name;
68 this.descriptionBundle = descriptionBundle;
69
487926f7 70 this.map = new HashMap<String, String>();
62c9ec78 71 this.changeMap = new HashMap<String, String>();
e9ca6bb8 72 setBundle(name, Locale.getDefault(), false);
ec1f3444
NR
73 }
74
75 /**
76 * Return the value associated to the given id as a {@link String}.
77 *
db31c358 78 * @param id
ec1f3444
NR
79 * the id of the value to get
80 *
81 * @return the associated value, or NULL if not found (not present in the
82 * resource file)
83 */
84 public String getString(E id) {
487926f7 85 return getString(id.name());
ec1f3444
NR
86 }
87
62c9ec78
NR
88 /**
89 * Set the value associated to the given id as a {@link String}.
90 *
db31c358 91 * @param id
62c9ec78
NR
92 * the id of the value to get
93 * @param value
94 * the value
95 *
96 */
97 public void setString(E id, String value) {
487926f7 98 setString(id.name(), value);
62c9ec78
NR
99 }
100
ec1f3444
NR
101 /**
102 * Return the value associated to the given id as a {@link String} suffixed
103 * with the runtime value "_suffix" (that is, "_" and suffix).
487926f7
NR
104 * <p>
105 * Will only accept suffixes that form an existing id.
ec1f3444 106 *
db31c358 107 * @param id
ec1f3444
NR
108 * the id of the value to get
109 * @param suffix
110 * the runtime suffix
111 *
112 * @return the associated value, or NULL if not found (not present in the
113 * resource file)
114 */
115 public String getStringX(E id, String suffix) {
116 String key = id.name()
80383c14 117 + (suffix == null ? "" : "_" + suffix.toUpperCase());
ec1f3444 118
487926f7
NR
119 try {
120 id = Enum.valueOf(type, key);
121 return getString(id);
122 } catch (IllegalArgumentException e) {
123
ec1f3444
NR
124 }
125
126 return null;
127 }
128
62c9ec78
NR
129 /**
130 * Set the value associated to the given id as a {@link String} suffixed
131 * with the runtime value "_suffix" (that is, "_" and suffix).
487926f7
NR
132 * <p>
133 * Will only accept suffixes that form an existing id.
62c9ec78 134 *
db31c358 135 * @param id
62c9ec78
NR
136 * the id of the value to get
137 * @param suffix
138 * the runtime suffix
139 * @param value
140 * the value
141 */
142 public void setStringX(E id, String suffix, String value) {
143 String key = id.name()
144 + (suffix == null ? "" : "_" + suffix.toUpperCase());
145
487926f7
NR
146 try {
147 id = Enum.valueOf(type, key);
148 setString(id, value);
149 } catch (IllegalArgumentException e) {
150
151 }
62c9ec78
NR
152 }
153
ec1f3444
NR
154 /**
155 * Return the value associated to the given id as a {@link Boolean}.
156 *
db31c358 157 * @param id
ec1f3444
NR
158 * the id of the value to get
159 *
160 * @return the associated value
161 */
162 public Boolean getBoolean(E id) {
163 String str = getString(id);
164 if (str != null && str.length() > 0) {
165 if (str.equalsIgnoreCase("true") || str.equalsIgnoreCase("on")
166 || str.equalsIgnoreCase("yes"))
167 return true;
168 if (str.equalsIgnoreCase("false") || str.equalsIgnoreCase("off")
169 || str.equalsIgnoreCase("no"))
170 return false;
171
172 }
173
174 return null;
175 }
176
177 /**
62c9ec78 178 * Return the value associated to the given id as a {@link Boolean}.
ec1f3444 179 *
db31c358 180 * @param id
ec1f3444
NR
181 * the id of the value to get
182 * @param def
183 * the default value when it is not present in the config file or
184 * if it is not a boolean value
185 *
186 * @return the associated value
187 */
188 public boolean getBoolean(E id, boolean def) {
189 Boolean b = getBoolean(id);
190 if (b != null)
191 return b;
192
193 return def;
194 }
195
196 /**
197 * Return the value associated to the given id as an {@link Integer}.
198 *
db31c358 199 * @param id
ec1f3444
NR
200 * the id of the value to get
201 *
202 * @return the associated value
203 */
204 public Integer getInteger(E id) {
205 try {
206 return Integer.parseInt(getString(id));
207 } catch (Exception e) {
208 }
209
210 return null;
211 }
212
213 /**
db31c358 214 * Return the value associated to the given id as an int.
ec1f3444 215 *
db31c358 216 * @param id
ec1f3444
NR
217 * the id of the value to get
218 * @param def
219 * the default value when it is not present in the config file or
220 * if it is not a int value
221 *
222 * @return the associated value
223 */
224 public int getInteger(E id, int def) {
225 Integer i = getInteger(id);
226 if (i != null)
227 return i;
228
229 return def;
230 }
231
232 /**
233 * Return the value associated to the given id as a {@link Character}.
234 *
db31c358 235 * @param id
ec1f3444
NR
236 * the id of the value to get
237 *
238 * @return the associated value
239 */
62c9ec78 240 public Character getCharacter(E id) {
ec1f3444
NR
241 String s = getString(id).trim();
242 if (s.length() > 0) {
243 return s.charAt(0);
244 }
245
62c9ec78
NR
246 return null;
247 }
248
249 /**
250 * Return the value associated to the given id as a {@link Character}.
251 *
db31c358 252 * @param id
62c9ec78
NR
253 * the id of the value to get
254 * @param def
255 * the default value when it is not present in the config file or
256 * if it is not a char value
257 *
258 * @return the associated value
259 */
260 public char getCharacter(E id, char def) {
261 String s = getString(id).trim();
262 if (s.length() > 0) {
263 return s.charAt(0);
264 }
265
266 return def;
ec1f3444
NR
267 }
268
b3aad1f9 269 /**
80500544
NR
270 * Return the value associated to the given id as a colour if it is found
271 * and can be parsed.
272 * <p>
273 * The returned value is an ARGB value.
b3aad1f9 274 *
db31c358
NR
275 * @param id
276 * the id of the value to get
b3aad1f9
NR
277 *
278 * @return the associated value
279 */
80500544
NR
280 public Integer getColor(E id) {
281 Integer rep = null;
b3aad1f9
NR
282
283 String bg = getString(id).trim();
80500544
NR
284
285 int r = 0, g = 0, b = 0, a = -1;
62c9ec78 286 if (bg.startsWith("#") && (bg.length() == 7 || bg.length() == 9)) {
b3aad1f9 287 try {
80500544
NR
288 r = Integer.parseInt(bg.substring(1, 3), 16);
289 g = Integer.parseInt(bg.substring(3, 5), 16);
290 b = Integer.parseInt(bg.substring(5, 7), 16);
62c9ec78
NR
291 if (bg.length() == 9) {
292 a = Integer.parseInt(bg.substring(7, 9), 16);
80500544
NR
293 } else {
294 a = 255;
62c9ec78 295 }
80500544 296
b3aad1f9 297 } catch (NumberFormatException e) {
80500544 298 // no changes
b3aad1f9
NR
299 }
300 }
301
db31c358 302 // Try by name if still not found
80500544
NR
303 if (a == -1) {
304 if ("black".equalsIgnoreCase(bg)) {
305 a = 255;
306 r = 0;
307 g = 0;
308 b = 0;
309 } else if ("white".equalsIgnoreCase(bg)) {
310 a = 255;
311 r = 255;
312 g = 255;
313 b = 255;
314 } else if ("red".equalsIgnoreCase(bg)) {
315 a = 255;
316 r = 255;
317 g = 0;
318 b = 0;
319 } else if ("green".equalsIgnoreCase(bg)) {
320 a = 255;
321 r = 0;
322 g = 255;
323 b = 0;
324 } else if ("blue".equalsIgnoreCase(bg)) {
325 a = 255;
326 r = 0;
327 g = 0;
328 b = 255;
329 } else if ("grey".equalsIgnoreCase(bg)
330 || "gray".equalsIgnoreCase(bg)) {
331 a = 255;
332 r = 128;
333 g = 128;
334 b = 128;
335 } else if ("cyan".equalsIgnoreCase(bg)) {
336 a = 255;
337 r = 0;
338 g = 255;
339 b = 255;
340 } else if ("magenta".equalsIgnoreCase(bg)) {
341 a = 255;
342 r = 255;
343 g = 0;
344 b = 255;
345 } else if ("yellow".equalsIgnoreCase(bg)) {
346 a = 255;
347 r = 255;
348 g = 255;
349 b = 0;
db31c358
NR
350 }
351 }
db31c358 352
80500544
NR
353 if (a != -1) {
354 rep = ((a & 0xFF) << 24) //
355 | ((r & 0xFF) << 16) //
356 | ((g & 0xFF) << 8) //
357 | ((b & 0xFF) << 0);
358 }
359
360 return rep;
b3aad1f9
NR
361 }
362
62c9ec78 363 /**
80500544
NR
364 * Set the value associated to the given id as a colour.
365 * <p>
366 * The value is an BGRA value.
62c9ec78 367 *
db31c358
NR
368 * @param id
369 * the id of the value to set
370 * @param color
80500544 371 * the new colour
62c9ec78 372 */
80500544
NR
373 public void setColor(E id, Integer color) {
374 int a = (color >> 24) & 0xFF;
375 int r = (color >> 16) & 0xFF;
376 int g = (color >> 8) & 0xFF;
377 int b = (color >> 0) & 0xFF;
378
379 String rs = Integer.toString(r, 16);
380 String gs = Integer.toString(g, 16);
381 String bs = Integer.toString(b, 16);
382 String as = "";
383 if (a < 255) {
384 as = Integer.toString(a, 16);
62c9ec78
NR
385 }
386
80500544 387 setString(id, "#" + rs + gs + bs + as);
62c9ec78
NR
388 }
389
487926f7
NR
390 /**
391 * Create/update the .properties file.
392 * <p>
393 * Will use the most likely candidate as base if the file does not already
394 * exists and this resource is translatable (for instance, "en_US" will use
395 * "en" as a base if the resource is a translation file).
396 * <p>
397 * Will update the files in {@link Bundles#getDirectory()}; it <b>MUST</b>
398 * be set.
399 *
400 * @throws IOException
401 * in case of IO errors
402 */
403 public void updateFile() throws IOException {
404 updateFile(Bundles.getDirectory());
405 }
406
ec1f3444 407 /**
80383c14
NR
408 * Create/update the .properties file.
409 * <p>
410 * Will use the most likely candidate as base if the file does not already
411 * exists and this resource is translatable (for instance, "en_US" will use
412 * "en" as a base if the resource is a translation file).
ec1f3444
NR
413 *
414 * @param path
487926f7
NR
415 * the path where the .properties files are, <b>MUST NOT</b> be
416 * NULL
ec1f3444
NR
417 *
418 * @throws IOException
419 * in case of IO errors
420 */
421 public void updateFile(String path) throws IOException {
422 File file = getUpdateFile(path);
423
424 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(
425 new FileOutputStream(file), "UTF-8"));
426
427 writeHeader(writer);
428 writer.write("\n");
429 writer.write("\n");
430
431 for (Field field : type.getDeclaredFields()) {
432 Meta meta = field.getAnnotation(Meta.class);
433 if (meta != null) {
cd0c27d2 434 E id = Enum.valueOf(type, field.getName());
ec1f3444
NR
435 String info = getMetaInfo(meta);
436
437 if (info != null) {
438 writer.write(info);
439 writer.write("\n");
440 }
441
442 writeValue(writer, id);
443 }
444 }
445
446 writer.close();
447 }
448
db31c358
NR
449 /**
450 * The description {@link TransBundle}, that is, a {@link TransBundle}
451 * dedicated to the description of the values of the given {@link Bundle}
452 * (can be NULL).
453 *
454 * @return the description {@link TransBundle}
455 */
456 public TransBundle<E> getDescriptionBundle() {
457 return descriptionBundle;
458 }
459
80383c14
NR
460 /**
461 * Reload the {@link Bundle} data files.
e9ca6bb8
NR
462 *
463 * @param resetToDefault
464 * reset to the default configuration (do not look into the
465 * possible user configuration files, only take the original
466 * configuration)
80383c14 467 */
e9ca6bb8 468 public void reload(boolean resetToDefault) {
db31c358 469 setBundle(keyType, Locale.getDefault(), resetToDefault);
80383c14
NR
470 }
471
ec1f3444
NR
472 /**
473 * Check if the internal map contains the given key.
474 *
475 * @param key
476 * the key to check for
477 *
478 * @return true if it does
479 */
480 protected boolean containsKey(String key) {
487926f7 481 return changeMap.containsKey(key) || map.containsKey(key);
ec1f3444
NR
482 }
483
484 /**
2cce3dcb
NR
485 * Get the value for the given key if it exists in the internal map, or NULL
486 * if not.
ec1f3444
NR
487 *
488 * @param key
489 * the key to check for
490 *
2cce3dcb 491 * @return the value, or NULL
ec1f3444
NR
492 */
493 protected String getString(String key) {
62c9ec78
NR
494 if (changeMap.containsKey(key)) {
495 return changeMap.get(key);
496 }
497
487926f7
NR
498 if (map.containsKey(key)) {
499 return map.get(key);
ec1f3444
NR
500 }
501
502 return null;
503 }
504
62c9ec78
NR
505 /**
506 * Set the value for this key, in the change map (it is kept in memory, not
507 * yet on disk).
508 *
509 * @param key
510 * the key
511 * @param value
512 * the associated value
513 */
514 protected void setString(String key, String value) {
487926f7 515 changeMap.put(key, value == null ? null : value.trim());
62c9ec78
NR
516 }
517
ec1f3444
NR
518 /**
519 * Return formated, display-able information from the {@link Meta} field
520 * given. Each line will always starts with a "#" character.
521 *
522 * @param meta
523 * the {@link Meta} field
524 *
525 * @return the information to display or NULL if none
526 */
527 protected String getMetaInfo(Meta meta) {
db31c358
NR
528 String desc = meta.description();
529 boolean group = meta.group();
530 Meta.Format format = meta.format();
531 String[] list = meta.list();
532 boolean nullable = meta.nullable();
ec1f3444 533 String info = meta.info();
db31c358 534 boolean array = meta.array();
ec1f3444 535
db31c358
NR
536 // Default, empty values -> NULL
537 if (desc.length() + list.length + info.length() == 0 && !group
538 && nullable && format == Meta.Format.STRING) {
ec1f3444 539 return null;
db31c358 540 }
ec1f3444
NR
541
542 StringBuilder builder = new StringBuilder();
db31c358
NR
543 builder.append("# ").append(desc);
544 if (desc.length() > 20) {
545 builder.append("\n#");
546 }
ec1f3444 547
db31c358
NR
548 if (group) {
549 builder.append("This item is used as a group, its content is not expected to be used.");
550 } else {
551 builder.append(" (FORMAT: ").append(format)
552 .append(nullable ? "" : " (required)");
553 builder.append(") ").append(info);
554
555 if (list.length > 0) {
556 builder.append("\n# ALLOWED VALUES:");
557 for (String value : list) {
558 builder.append(" \"").append(value).append("\"");
559 }
ec1f3444
NR
560 }
561
db31c358
NR
562 if (array) {
563 builder.append("\n# (This item accept a list of comma-separated values)");
ec1f3444
NR
564 }
565 }
566
ec1f3444
NR
567 return builder.toString();
568 }
569
570 /**
571 * The display name used in the <tt>.properties file</tt>.
572 *
573 * @return the name
574 */
575 protected String getBundleDisplayName() {
db31c358 576 return keyType.toString();
ec1f3444
NR
577 }
578
579 /**
580 * Write the header found in the configuration <tt>.properties</tt> file of
581 * this {@link Bundles}.
582 *
583 * @param writer
584 * the {@link Writer} to write the header in
585 *
586 * @throws IOException
587 * in case of IO error
588 */
589 protected void writeHeader(Writer writer) throws IOException {
590 writer.write("# " + getBundleDisplayName() + "\n");
591 writer.write("#\n");
592 }
593
594 /**
595 * Write the given id to the config file, i.e., "MY_ID = my_curent_value"
596 * followed by a new line
597 *
598 * @param writer
599 * the {@link Writer} to write into
600 * @param id
601 * the id to write
602 *
603 * @throws IOException
604 * in case of IO error
605 */
606 protected void writeValue(Writer writer, E id) throws IOException {
607 writeValue(writer, id.name(), getString(id));
608 }
609
610 /**
611 * Write the given data to the config file, i.e., "MY_ID = my_curent_value"
612 * followed by a new line
613 *
614 * @param writer
615 * the {@link Writer} to write into
616 * @param id
617 * the id to write
618 * @param value
619 * the id's value
620 *
621 * @throws IOException
622 * in case of IO error
623 */
624 protected void writeValue(Writer writer, String id, String value)
625 throws IOException {
626 writer.write(id);
627 writer.write(" = ");
628
629 if (value == null) {
630 value = "";
631 }
632
009196a4 633 String[] lines = value.replaceAll("\t", "\\\\\\t").split("\n");
ec1f3444
NR
634 for (int i = 0; i < lines.length; i++) {
635 writer.write(lines[i]);
636 if (i < lines.length - 1) {
637 writer.write("\\n\\");
638 }
639 writer.write("\n");
640 }
641 }
642
643 /**
644 * Return the source file for this {@link Bundles} from the given path.
645 *
646 * @param path
647 * the path where the .properties files are
648 *
649 * @return the source {@link File}
ec1f3444
NR
650 */
651 protected File getUpdateFile(String path) {
db31c358 652 return new File(path, keyType.name() + ".properties");
ec1f3444
NR
653 }
654
655 /**
62c9ec78 656 * Change the currently used bundle, and reset all changes.
ec1f3444
NR
657 *
658 * @param name
659 * the name of the bundle to load
660 * @param locale
661 * the {@link Locale} to use
e9ca6bb8
NR
662 * @param resetToDefault
663 * reset to the default configuration (do not look into the
664 * possible user configuration files, only take the original
665 * configuration)
ec1f3444 666 */
e9ca6bb8 667 protected void setBundle(Enum<?> name, Locale locale, boolean resetToDefault) {
62c9ec78 668 changeMap.clear();
ec1f3444
NR
669 String dir = Bundles.getDirectory();
670
487926f7 671 boolean found = false;
e9ca6bb8 672 if (!resetToDefault && dir != null) {
ec1f3444
NR
673 try {
674 File file = getPropertyFile(dir, name.name(), locale);
675 if (file != null) {
676 Reader reader = new InputStreamReader(new FileInputStream(
677 file), "UTF8");
487926f7
NR
678 resetMap(new PropertyResourceBundle(reader));
679 found = true;
ec1f3444
NR
680 }
681 } catch (IOException e) {
682 e.printStackTrace();
683 }
684 }
685
487926f7
NR
686 if (!found) {
687 String bname = type.getPackage().getName() + "." + name.name();
e9ca6bb8 688 try {
487926f7
NR
689 resetMap(ResourceBundle
690 .getBundle(bname, locale, type.getClassLoader(),
691 new FixedResourceBundleControl()));
e9ca6bb8
NR
692 } catch (Exception e) {
693 // We have no bundle for this Bundle
487926f7
NR
694 System.err.println("No bundle found for: " + bname);
695 resetMap(null);
696 }
697 }
698 }
699
700 /**
701 * Reset the backing map to the content of the given bundle, or empty if
702 * bundle is NULL.
703 *
704 * @param bundle
705 * the bundle to copy
706 */
b771aed5 707 protected void resetMap(ResourceBundle bundle) {
487926f7
NR
708 this.map.clear();
709
710 if (bundle != null) {
711 for (E field : type.getEnumConstants()) {
712 try {
713 String value = bundle.getString(field.name());
714 this.map.put(field.name(),
715 value == null ? null : value.trim());
716 } catch (MissingResourceException e) {
717 }
e9ca6bb8
NR
718 }
719 }
720 }
cd0c27d2 721
e9ca6bb8
NR
722 /**
723 * Take a snapshot of the changes in memory in this {@link Bundle} made by
724 * the "set" methods ( {@link Bundle#setString(Enum, String)}...) at the
725 * current time.
726 *
487926f7 727 * @return a snapshot to use with {@link Bundle#restoreSnapshot(Object)}
e9ca6bb8 728 */
487926f7 729 public Object takeSnapshot() {
e9ca6bb8
NR
730 return new HashMap<String, String>(changeMap);
731 }
732
733 /**
734 * Restore a snapshot taken with {@link Bundle}, or reset the current
735 * changes if the snapshot is NULL.
736 *
737 * @param snap
738 * the snapshot or NULL
739 */
740 @SuppressWarnings("unchecked")
487926f7 741 public void restoreSnapshot(Object snap) {
e9ca6bb8
NR
742 if (snap == null) {
743 changeMap.clear();
744 } else {
745 if (snap instanceof Map) {
746 changeMap = (Map<String, String>) snap;
747 } else {
d827da2a 748 throw new RuntimeException(
e9ca6bb8
NR
749 "Restoring changes in a Bundle must be done on a changes snapshot, "
750 + "or NULL to discard current changes");
751 }
ec1f3444
NR
752 }
753 }
754
755 /**
756 * Return the resource file that is closer to the {@link Locale}.
757 *
758 * @param dir
db31c358 759 * the directory to look into
ec1f3444 760 * @param name
db31c358 761 * the file base name (without <tt>.properties</tt>)
ec1f3444
NR
762 * @param locale
763 * the {@link Locale}
764 *
765 * @return the closest match or NULL if none
766 */
767 private File getPropertyFile(String dir, String name, Locale locale) {
768 List<String> locales = new ArrayList<String>();
769 if (locale != null) {
770 String country = locale.getCountry() == null ? "" : locale
771 .getCountry();
772 String language = locale.getLanguage() == null ? "" : locale
773 .getLanguage();
774 if (!language.isEmpty() && !country.isEmpty()) {
775 locales.add("_" + language + "-" + country);
776 }
777 if (!language.isEmpty()) {
778 locales.add("_" + language);
779 }
780 }
781
782 locales.add("");
783
784 File file = null;
785 for (String loc : locales) {
786 file = new File(dir, name + loc + ".properties");
787 if (file.exists()) {
788 break;
ec1f3444 789 }
d827da2a 790
cd0c27d2 791 file = null;
ec1f3444
NR
792 }
793
794 return file;
795 }
796}