aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_hub.org
blob: 4d9c320428bae247b09a0b9905bfbd27e8f56ca6 (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
#+TITLE:       doc_reform output hub
#+DESCRIPTION: documents - structuring, publishing in multiple formats & search
#+FILETAGS:    :doc_reform:output:hub:
#+AUTHOR:      Ralph Amissah
#+EMAIL:       [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]]
#+LANGUAGE:    en
#+STARTUP:     indent content
#+OPTIONS:     H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil _:nil -:t f:t *:t <:t
#+OPTIONS:     TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+OPTIONS:     author:nil email:nil creator:nil timestamp:nil
#+PROPERTY:    header-args :padline no :exports code :noweb yes
#+EXPORT_SELECT_TAGS:  export
#+EXPORT_EXCLUDE_TAGS: noexport
#+TAGS: assert(a) class(c) debug(d) mixin(m) doc_reform(s) tangle(T) template(t) WEB(W) noexport(n)

- [[./doc_reform.org][doc_reform]]  [[./][org/]]

* 0. output hub [#A]                           :module:doc_reform:output_hub:
** module template

#+BEGIN_SRC d :tangle ../src/doc_reform/output/hub.d
/++
  output hub<BR>
  check & generate output types requested
+/
module doc_reform.output.hub;
template outputHub() {
  <<output_imports>>
  import std.parallelism;
  void outputHub(D,I)(D doc_abstraction, I doc_matters) {
    mixin DocReformOutputRgxInit;
    mixin Msg;
    auto msg = Msg!()(doc_matters);
    static auto rgx = Rgx();
    enum outTask { pod, source, sqlite, sqlite_multi, epub, html_scroll, html_seg, html_stuff }
    void Scheduled(D,I)(int sched, D doc_abstraction, I doc_matters) {
      auto msg = Msg!()(doc_matters);
      <<output_scheduled_task>>
    }
    if (!(doc_matters.opt.action.parallelise_subprocesses)) {
      foreach(schedule; doc_matters.opt.action.output_task_scheduler) {
        Scheduled!()(schedule, doc_abstraction, doc_matters);
      }
    } else {
      foreach(schedule; parallel(doc_matters.opt.action.output_task_scheduler)) {
        Scheduled!()(schedule, doc_abstraction, doc_matters);
      }
    }
    <<output_shared_sqlite_db>>
  }
}
template outputHubOp() {
  <<output_imports>>
  void outputHubOp(E,O)(E env, O opt_action) {
    mixin DocReformOutputRgxInit;
    static auto rgx = Rgx();
    <<output_options_op>>
  }
}
#+END_SRC

** initialize / imports

#+name: output_imports
#+BEGIN_SRC d
import doc_reform.output,
  doc_reform.output.epub3,
  doc_reform.output.html,
  doc_reform.output.sqlite,
  doc_reform.output.xmls,
  doc_reform.output.source_pod,
  doc_reform.output.create_zip_file,
  doc_reform.output.paths_output;
#+END_SRC

#+name: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.pod) {
  msg.v("sisu source processing... ");
  DocReformPod!()(doc_matters);
  msg.vv("sisu source done");
}
if (sched == outTask.sqlite) {
  msg.v("sqlite processing... ");
  SQLiteHubDiscreteBuildTablesAndPopulate!()(doc_matters, doc_abstraction);
  msg.vv("sqlite done");
}
if (sched == outTask.epub) {
  msg.v("epub3 processing... ");
  outputEPub3!()(doc_abstraction, doc_matters);
  msg.vv("epub3 done");
}
if (sched == outTask.html_scroll) {
  msg.v("html scroll processing... ");
  outputHTML!().scroll(doc_abstraction, doc_matters);
  msg.vv("html scroll done");
}
if (sched == outTask.html_seg) {
  msg.v("html seg processing... ");
  outputHTML!().seg(doc_abstraction, doc_matters);
  msg.vv("html seg done");
}
if (sched == outTask.html_stuff) {
  outputHTML!().css(doc_matters);
  outputHTML!().images_cp(doc_matters);
  msg.vv("html css & images done");
}
#+END_SRC

** output options
*** verbose

*** output source: _sisusrc_ &/or _pod_
- [[./output_pod.org][output_pod]]

**** collection
***** update / populate

#+name: output_shared_sqlite_db
#+BEGIN_SRC d
if (doc_matters.opt.action.sqlite_update) {
  msg.v("sqlite update processing...");
  SQLiteHubBuildTablesAndPopulate!()(doc_matters, doc_abstraction);
  msg.vv("sqlite update done");
} else if (doc_matters.opt.action.sqlite_delete) {
  msg.v("sqlite delete processing...");
  SQLiteHubBuildTablesAndPopulate!()(doc_matters, doc_abstraction);
  msg.vv("sqlite delete done");
}
#+END_SRC

***** no markup source files to process
****** drop

#+name: output_options_op
#+BEGIN_SRC d
if ((opt_action.sqlite_db_drop)) {
  if ((opt_action.verbose)) {
    writeln("sqlite drop db...");
  }
  SQLiteDbDrop!()(opt_action);
  if ((opt_action.very_verbose)) {
    writeln("sqlite drop db done");
  }
}
#+END_SRC

****** create

#+name: output_options_op
#+BEGIN_SRC d
if ((opt_action.sqlite_db_create)) {
  if ((opt_action.verbose)) {
    writeln("sqlite create table...");
  }
  SQLiteTablesCreate!()(env, opt_action);
  if ((opt_action.very_verbose)) {
    writeln("sqlite create table done");
  }
}
#+END_SRC

* __END__