Library scanning much quicker
[fanfix.git] / src / be / nikiroo / fanfix / supported / InfoText.java
CommitLineData
08fe2e33
NR
1package be.nikiroo.fanfix.supported;
2
3import java.io.File;
08fe2e33
NR
4import java.io.IOException;
5import java.io.InputStream;
08fe2e33
NR
6import java.net.URISyntaxException;
7import java.net.URL;
08fe2e33
NR
8
9import be.nikiroo.fanfix.Instance;
68686a37 10import be.nikiroo.fanfix.data.MetaData;
08fe2e33
NR
11
12/**
13 * Support class for <tt>.info</tt> text files ({@link Text} files with a
14 * <tt>.info</tt> metadata file next to them).
15 * <p>
16 * The <tt>.info</tt> file is supposed to be written by this program, or
17 * compatible.
18 *
19 * @author niki
20 */
21class InfoText extends Text {
22 @Override
23 public String getSourceName() {
24 return "info-text";
25 }
26
27 @Override
68686a37 28 protected MetaData getMeta(URL source, InputStream in) throws IOException {
08fe2e33 29 try {
68686a37
NR
30 MetaData meta = InfoReader.readMeta(new File(new File(source
31 .toURI()).getPath() + ".info"));
32
33 // Some old .info files don't have this information...
34 String test = meta.getTitle() == null ? "" : meta.getTitle();
35 test += meta.getAuthor() == null ? "" : meta.getAuthor();
36 test += meta.getDate() == null ? "" : meta.getDate();
37 if (test.isEmpty()) {
38 MetaData superMeta = super.getMeta(source, reset(in));
39 if (meta.getTitle() == null || meta.getTitle().isEmpty()) {
40 meta.setTitle(superMeta.getTitle());
41 }
42 if (meta.getAuthor() == null || meta.getAuthor().isEmpty()) {
43 meta.setAuthor(superMeta.getAuthor());
44 }
45 if (meta.getDate() == null || meta.getDate().isEmpty()) {
46 meta.setDate(superMeta.getDate());
08fe2e33 47 }
08fe2e33 48 }
08fe2e33 49
68686a37 50 return meta;
08fe2e33 51
68686a37
NR
52 } catch (URISyntaxException e) {
53 throw new IOException("Cannot parse URL to file: " + source, e);
54 }
08fe2e33
NR
55 }
56
57 @Override
58 protected boolean supports(URL url) {
59 if ("file".equals(url.getProtocol())) {
60 File file;
61 try {
62 file = new File(url.toURI());
63 file = new File(file.getPath() + ".info");
64 } catch (URISyntaxException e) {
65 Instance.syserr(e);
66 file = null;
67 }
68
69 return file != null && file.exists();
70 }
71
72 return false;
73 }
08fe2e33 74}