1 package be
.nikiroo
.fanfix
.reader
.cli
;
3 import java
.io
.IOException
;
6 import be
.nikiroo
.fanfix
.Instance
;
7 import be
.nikiroo
.fanfix
.bundles
.StringId
;
8 import be
.nikiroo
.fanfix
.data
.Chapter
;
9 import be
.nikiroo
.fanfix
.data
.MetaData
;
10 import be
.nikiroo
.fanfix
.data
.Paragraph
;
11 import be
.nikiroo
.fanfix
.data
.Story
;
12 import be
.nikiroo
.fanfix
.reader
.BasicReader
;
13 import be
.nikiroo
.fanfix
.searchable
.BasicSearchable
;
14 import be
.nikiroo
.fanfix
.searchable
.SearchableTag
;
15 import be
.nikiroo
.fanfix
.supported
.SupportType
;
16 import be
.nikiroo
.utils
.StringUtils
;
19 * Command line {@link Story} reader.
21 * Will output stories to the console.
25 class CliReader
extends BasicReader
{
27 public void read(boolean sync
) throws IOException
{
28 MetaData meta
= getMeta();
31 throw new IOException("No story to read");
37 if (meta
.getTitle() != null) {
38 title
= meta
.getTitle();
41 if (meta
.getAuthor() != null) {
42 author
= "©" + meta
.getAuthor();
43 if (meta
.getDate() != null && !meta
.getDate().isEmpty()) {
44 author
= author
+ " (" + meta
.getDate() + ")";
48 System
.out
.println(title
);
49 System
.out
.println(author
);
50 System
.out
.println("");
53 for (Chapter chap
: getStory(null)) {
54 if (chap
.getName() != null && !chap
.getName().isEmpty()) {
55 System
.out
.println(Instance
.getTrans().getString(
56 StringId
.CHAPTER_NAMED
, chap
.getNumber(),
59 System
.out
.println(Instance
.getTrans().getString(
60 StringId
.CHAPTER_UNNAMED
, chap
.getNumber()));
65 public void read(int chapter
) throws IOException
{
66 MetaData meta
= getMeta();
69 throw new IOException("No story to read");
73 if (chapter
> getStory(null).getChapters().size()) {
74 System
.err
.println("Chapter " + chapter
+ ": no such chapter");
76 Chapter chap
= getStory(null).getChapters().get(chapter
- 1);
77 System
.out
.println("Chapter " + chap
.getNumber() + ": "
80 for (Paragraph para
: chap
) {
81 System
.out
.println(para
.getContent());
82 System
.out
.println("");
88 public void browse(String source
) throws IOException
{
89 List
<MetaData
> stories
= getLibrary().getListBySource(source
);
91 for (MetaData story
: stories
) {
93 if (story
.getAuthor() != null && !story
.getAuthor().isEmpty()) {
94 author
= " (" + story
.getAuthor() + ")";
97 System
.out
.println(story
.getLuid() + ": " + story
.getTitle()
103 public void search(boolean sync
) throws IOException
{
104 for (SupportType type
: SupportType
.values()) {
105 if (BasicSearchable
.getSearchable(type
) != null) {
106 System
.out
.println(type
);
112 public void search(SupportType searchOn
, String keywords
, int page
,
113 int item
, boolean sync
) throws IOException
{
114 BasicSearchable search
= BasicSearchable
.getSearchable(searchOn
);
117 System
.out
.println(search
.searchPages(keywords
));
119 List
<MetaData
> metas
= search
.search(keywords
, page
);
122 System
.out
.println("Page " + page
+ " of stories for: "
124 displayStories(metas
);
127 if (item
<= 0 || item
> metas
.size()) {
128 throw new IOException("Index out of bounds: " + item
);
131 MetaData meta
= metas
.get(item
- 1);
138 public void searchTag(SupportType searchOn
, int page
, int item
,
139 boolean sync
, Integer
... tags
) throws IOException
{
141 BasicSearchable search
= BasicSearchable
.getSearchable(searchOn
);
142 SearchableTag stag
= search
.getTag(tags
);
146 System
.out
.println("Known tags: ");
148 for (SearchableTag s
: search
.getTags()) {
149 System
.out
.println(String
.format("%d: %s", i
, s
.getName()));
155 System
.out
.println(search
.searchPages(stag
));
157 System
.out
.println(stag
.getCount());
160 List
<MetaData
> metas
= null;
161 List
<SearchableTag
> subtags
= null;
165 metas
= search
.search(stag
, page
);
166 count
= metas
.size();
168 subtags
= stag
.getChildren();
169 count
= subtags
.size();
175 MetaData meta
= metas
.get(item
- 1);
178 SearchableTag subtag
= subtags
.get(item
- 1);
182 System
.out
.println("Invalid item: only " + count
188 System
.out
.println(String
.format("Content of %s: ",
190 displayStories(metas
);
193 System
.out
.println(String
.format("Subtags of %s: ",
195 displayTags(subtags
);
202 private void displayTag(SearchableTag subtag
) {
204 String stories
= "stories";
205 String num
= StringUtils
.formatNumber(subtag
.getCount());
206 System
.out
.println(String
.format("%s (%s), %s %s", subtag
.getName(),
207 subtag
.getFqName(), num
, stories
));
210 private void displayStory(MetaData meta
) {
211 System
.out
.println(meta
.getTitle());
212 System
.out
.println();
213 System
.out
.println(meta
.getUrl());
214 System
.out
.println();
215 System
.out
.println("Tags: " + meta
.getTags());
216 System
.out
.println();
217 for (Paragraph para
: meta
.getResume()) {
218 System
.out
.println(para
.getContent());
219 System
.out
.println("");
223 private void displayTags(List
<SearchableTag
> subtags
) {
225 for (SearchableTag subtag
: subtags
) {
227 if (subtag
.getCount() > 0) {
228 total
= StringUtils
.formatNumber(subtag
.getCount());
231 if (total
.isEmpty()) {
233 .println(String
.format("%d: %s", i
, subtag
.getName()));
235 System
.out
.println(String
.format("%d: %s (%s)", i
,
236 subtag
.getName(), total
));
243 private void displayStories(List
<MetaData
> metas
) {
245 for (MetaData meta
: metas
) {
246 System
.out
.println(i
+ ": " + meta
.getTitle());