]> git.uio.no Git - u/philim/db2osl_thesis.git/blob - program_arch.tex
Major change
[u/philim/db2osl_thesis.git] / program_arch.tex
1 \section{Architecture of \myprog{}}
2 \label{arch}
3 \subsection{Libraries used in \myprog{}}
4 \subsection{Coarse structuring of \myprog{}}
5 \label{coarse}
6 TODO: overall description, modularity, extendability, ex: easy to add new in-/output formats
7 TODO: mapping profiles (maybe better in next subsection)
8 TODO: Java, OPTIQUE
9
10 \subsubsection{Package structuring of \myprog{}}
11 The $45$ classes of \myprog{} were assigned to $11$ packages, each containing
12 classes responsible for the same area of operation or taking over similar roles.
13 Care was taken that package division happened senseful, producing meaningful packages
14 with obvious task fields on the one hand, while on the other hand implementing an
15 incisive separation with a notable degree of decoupling.
16 Packages were chosen not to be nested but to be set out vapidly.
17 Since this doesn't have any functional implications \cite{java}, but is rather an
18 implementation detail, this is further explained in Section~\fullref{code_packages}.
19
20 The packages are introduced and described in Table~\ref{arch_tbl_packages}.
21 The lists of classes each package contains are given in Table~\ref{app_tbl_classes}
22 in Appendix~\fullref{app_pkgs}.
23
24 \begin{table}[H]
25         \begin{tabular}{p{3cm}|p{13cm}} %\KOMAoption{fontsize}{\smallerfontsize{}}
26                 Package & Description\\
27                 \hline
28                 \code{bootstrapping} & Classes performing bootstrapping\\
29                 \code{cli} & Classes related to the command line interface of \myprog{}\\
30                 \code{database} & Classes related to the representation of relational databases and attached tasks\\
31                 \code{helpers} & Helper classes used program-wide\\
32                 \code{log} & Classes related to logging and diagnostic output\\
33                 \code{main} & The \code{Main} class\\
34                 \code{osl} & Classes representing OBDA specifications (as described in \cite{eng}) using the \oslboth{}\\
35                 \code{output} & Classes used to output OBDA specifications as described in \cite{eng}\\
36                 \code{settings} & Classes related to program and job settings (including command line parsing)\\
37                 \code{specification} & Classes representing (parts of) OBDA specifications (as described in \cite{eng}) directly, without involving \osl{}\\
38                 \code{test} & Classes offering testing facilities\\
39         \end{tabular} %\KOMAoption{fontsize}{\myfontsize{}}
40         \caption{Descriptions of the packages in \myprog{}}
41         \label{arch_tbl_packages}
42 \end{table}
43
44 Besides intuition, as stated, care was involved when partitioning the program into
45 these packages, which included the analysis of the package
46 interaction under a given structure, and the carrying out of changes to
47 make this structure achieve the desired pronounced decoupling with
48 limited and intelligible dependencies.
49
50 The \code{main} package was introduced to make the \code{Main} class,
51 which carries information needed by other packages
52 -- most prominently, the program name --,
53 \code{import}able from inside these packages.
54 For this, it is required for \code{Main} not to reside in the \code{default}
55 package \cite{java}.
56
57 Decoupling some of the functionality of a package into a new package -- which,
58 in a nesting package structure, most probably would have become a sub-package -- and
59 thus sacrificing the benefit of having fewer packages also played a role in some cases.
60 Namely, \code{osl} is a package on its own instead of being part of the
61 \code{specification} package, the \code{bootstrapping} classes also form a package
62 on their own instead of belonging to the \code{specification} package,
63 the classes of the \code{log} and the \code{cli} packages were not merged into
64 one package, although logging currently exclusively happens on the command line,
65 and the functionality of the \code{test} package, though containing only a few
66 lines of code, was separated into its own package.
67
68 Even though the package structure would have become quite simpler with these changes
69 applied -- $4$ out of $11$ packages could have been saved this way --
70 the first aim mentioned -- meaningfulness and intuitiveness -- was taken seriously
71 and the presented partitioning was considered a more natural and
72 comprehensible structuring, emphasizing different roles and thus being a more proper
73 foundation for future extensions of the program.
74 For example, because the \code{bootstrapping} package is central to the program and
75 takes over an active, processing role and in that is completely different
76 from the classes of the \code{specification} package which on their part have a
77 \emph{representing} role, it was considered senseful not to merge these two packages.
78 This undergirds the separation of concerns within the program and stresses that
79 the functionality of the \code{bootstrapping} package should not interweave with
80 that in the \code{specification} package, making it easier for both to stay
81 independent and further develop into understandable and suitable units.
82
83
84 \subsubsection{Package interaction}
85 As mentioned, the structuring of the packages was driven by the aim to gain a notable
86 amount of decoupling.
87 How this reflected in the dependency structure, thus the classes from other packages
88 that the classes of a package depend on, is described in the following.
89 As was also mentioned, the information presented here also acted back on the
90 package partitioning, which changed in consequence.
91
92 Dependencies of or on package \code{helpers} are not considered in the following,
93 since this package precisely was meant to offer services used by many other packages.
94 In fact, all facilities provided by \code{helpers} could just as well be part of
95 the \name{Java} API, but unfortunately are not.
96 The current dependency structure, factoring in this restriction, is shown in
97 Figure~\ref{arch_fig_packages} and reveals a conceivably tidy system of
98 dependencies.
99
100 \begin{figure}[H]\begin{center}
101                 \includegraphics[scale=0.86]{Images/package_graph.pdf}
102                 \caption[Package dependencies in \myprog{}]{Package dependencies in \myprog{}.
103                         ``$\rightarrow$'' means ``depends on''.}
104                 \label{arch_fig_packages}
105 \end{center}\end{figure}
106
107 Except for the package \code{settings} (which is further explained below),
108 every package has at most two outgoing edges, that is packages it depends on.
109 Previous versions of \myprog{} had a quite more complicated package dependency structure,
110 depicted in Figure~\ref{arch_fig_packages_earlier}.
111 In this previous package structure, the maximum number of dependencies of
112 packages other than \code{settings} on other packages is three, which also seems
113 reasonably less.
114 However, in the new structuring, \code{specification} has no packages it depends on
115 and thus suits its purpose of providing a mundane and straight-forward
116 representation of an OBDA specification much better.
117 %Furthermore, \code{output} doesn't depend on \code{database} anymore.
118
119 \begin{figure}[H]\begin{center}
120                 \includegraphics[scale=0.86]{Images/package_graph_earlier.pdf}
121                 \caption[Package dependencies in earlier versions of \myprog{}]{Package dependencies
122                         in earlier versions of \myprog{}. ``$\rightarrow$'' again means ``depends on''.}
123                 \label{arch_fig_packages_earlier}
124 \end{center}\end{figure}
125
126 Though there still are quite a number of dependencies (to be precise: $19$),
127 many of them ($8$, thus, nearly half) trace back to one central package
128 in the middle, \code{settings}.
129 This may seem odd at first glance, considering that most of the edges connecting to
130 the \code{settings} node are outgoing edges and only one is incoming,
131 whereas in a design where the settings are configured from within a single package
132 and accessed from many other packages this would be the other way round.
133 The reason for this constellation is that, as described in Section~\fullref{interface},
134 all settings in \myprog{} are configured per bootstrapping job
135 (there are no global settings) and so \code{settings}
136 contains a class \code{Job} (and currently no other classes),
137 which represents the configuration of a bootstrapping job but also
138 provides a \code{perform()} method combining the facilities offered by the other
139 packages.
140
141 By this means, the \code{perform()} method of the \code{Job} class acts as the central
142 driver performing the bootstrapping process, reducing the \code{main()} method to
143 only $7$ lines of code and turning \code{settings} into something like an externalized
144 part of the \code{main} package.
145 If, in a future version of the program, this approach is changed and global settings or
146 configuration files are introduced, \code{settings} will still be the central package,
147 leaving the package structure and dependencies unchanged,
148 since it either way contains information used by many other packages.
149 This was the reason why it was not renamed to, for example, \code{driver}, which was
150 considered, since at first glance it seems quite a bit unnatural
151 to have the driver class reside in a package called ``settings''.
152
153 %Package \code{helpers} depends on package \code{database}, which provides the \code{static}
154 %method \code{getSQLTypeName}.
155
156 \subsection{Fine structuring of \myprog{}}
157 \label{fine}
158 TODO: OBDA spec rep
159
160 While the packages in \myprog{} are introduced and described in Section~\fullref{coarse},
161 the classes that comprise them are addressed in this section.
162 For a list of classes contained in each package, refer to Appendix \ref{app_pkgs}.
163
164 TODO: total classes etc.
165
166 \subsubsection{Package contents}
167 \label{package_details}
168
169 Table~\ref{app_tbl_classes} lists the classes each package contains.
170 The packages \code{cli}, \code{main}, \code{osl} and \code{settings} contain only
171 one class each, while the by far most extensive package is \code{database},
172 containing $15$ classes.
173
174 \subsubsection{Class organization}
175 \label{hierarchies}
176 Organizing classes in a structured, obvious manner such that classes have well-defined
177 roles, behave in an intuitive way, ideally representing artifacts from the world
178 modeled in the program directly \cite{str3}, is a prerequisite to make the code
179 clear and comprehensible on the architectural level.
180
181 Section \fullref{code_classes} as part of Section~\fullref{code}
182 describes the identification and naming scheme for the classes in \myprog{}.
183 However, it is also important, to arrange these classes in useful, comprehensible
184 class hierarchies to avoid code duplication, make appropriate use of the type system,
185 ease the design of precise and flexible interfaces and enhance the
186 adaptability and extensibility of the program.
187
188 \newcounter{myFigureNumber}
189 \setcounter{myFigureNumber}{\value{figure}}
190 \newcommand{\stepfigcounter}{\stepcounter{myFigureNumber}\setcounter{figure}
191         {\value{myFigureNumber}}}
192
193 \newcounter{mySubfigureNumber}
194 \newcommand{\stepsubfigcounter}{\stepcounter{mySubfigureNumber}\setcounter{subfigure}
195         {\value{mySubfigureNumber}}}
196
197 \newcommand{\nextsubfig}{~\\\vspace{12px}}
198
199 \begin{figure}[H]\centering\begin{subfigure}[b]{\textwidth}
200                 \includegraphics[scale=0.86]{Images/inherit_graph_8.pdf}
201                 \caption{\code{ColumnSet} class hierarchy in \myprog{}}
202                 \label{hier_colset}
203 \end{subfigure}\nextsubfig{}\begin{subfigure}[b]{0.5\textwidth}
204                 \includegraphics[scale=0.86]{Images/inherit_graph_8_simplified.pdf}
205                 \stepsubfigcounter{}
206                 \caption{\code{ColumnSet} class hierarchy in \myprog{} -- simplified}
207                 \label{hier_colset_simple}
208 \end{subfigure}\nextsubfig{}\begin{subfigure}[b]{0.3\textwidth}
209                 \includegraphics[scale=0.86]{Images/inherit_graph_7.pdf}
210                 \stepsubfigcounter{}
211                 \caption{\code{Column} class hierarchy\\in \myprog{}}
212                 \label{hier_column}
213 \end{subfigure}
214         \stepfigcounter{}
215         \caption[Database class hierarchies in \myprog{}]{
216                 Database class hierarchies in \myprog{}.
217                 Interface names are italicized,
218                 external classes or interfaces are hemmed with a gray frame.}
219         \label{hiers_db}
220 \end{figure}
221
222 \setcounter{mySubfigureNumber}{0}
223 \begin{figure}[H]\centering\begin{subfigure}[b]{0.3\textwidth}
224                 \includegraphics[scale=0.86]{Images/inherit_graph_1.pdf}
225                 \label{hier_uribuilder}
226                 \caption{\code{URIBuilder} class hierarchy in \myprog{}}
227 \end{subfigure}\nextsubfig{}\begin{subfigure}[b]{0.5\textwidth}
228                 \includegraphics[scale=0.86]{Images/inherit_graph_19.pdf}
229                 \stepsubfigcounter{}
230                 \caption{\code{OBDAMap} class hierarchy in \myprog{}}
231                 \label{hier_obdamap}
232 \end{subfigure}
233         \stepfigcounter{}
234         \caption[OBDA specification class hierarchies in \myprog{}]{
235                 OBDA specification class hierarchies in \myprog{}.
236                 Interface names are italicized,
237                 external classes or interfaces are hemmed with a gray frame.}
238         \label{hiers_obdaspec}
239 \end{figure}
240
241 \setcounter{mySubfigureNumber}{0}
242 \begin{figure}[H]\centering\begin{subfigure}[c]{0.6\textwidth}
243                 \includegraphics[scale=0.86]{Images/inherit_graph_17.pdf}
244                 \caption{\code{SpecPrinter} class hierarchy in \myprog{}}
245                 \label{hier_specprinter}
246 \end{subfigure}\begin{subfigure}[c]{0.3\textwidth}
247                 \includegraphics[scale=0.86]{Images/inherit_graph_13.pdf}
248                 \stepsubfigcounter{}
249                 \caption{\code{StreamHandler} class hierarchy in \myprog{}}
250                 \label{hier_streamhandler}
251 \end{subfigure}
252         \stepfigcounter{}
253         \caption[Logging and output class hierarchies in \myprog{}]{
254                 Logging and output class hierarchies in \myprog{}.
255                 Interface names are italicized,
256                 external classes or interfaces are hemmed with a gray frame.}
257         \label{hiers_output}
258 \end{figure}
259
260 \begin{figure}[H]\centering
261         \includegraphics[scale=0.86]{Images/inherit_graph_18.pdf}
262         \caption[\code{Job} class hierarchy in \myprog{}]{
263                 \code{Job} class hierarchy in \myprog{}.
264                 Interface names are italicized,
265                 external classes or interfaces are hemmed with a gray frame.}
266         \label{hier_job}
267 \end{figure}
268 \stepfigcounter{}
269
270 \setcounter{mySubfigureNumber}{0}
271 \begin{figure}[H]\centering\begin{subfigure}[b]{\textwidth}
272                 \includegraphics[scale=0.86]{Images/inherit_graph_5.pdf}
273                 \caption{\code{Iterable} class hierarchy in \myprog{}}
274                 \label{hier_iterable}
275 \end{subfigure}\nextsubfig{}\begin{subfigure}[b]{0.3\textwidth}
276                 \includegraphics[scale=0.86]{Images/inherit_graph_21_extended.pdf}
277                 \stepsubfigcounter{}
278                 \caption{\code{ReadOnlyIterator} class\\hierarchy in \myprog{}}
279                 \label{hier_roiterator}
280 \end{subfigure}\nextsubfig{}\begin{subfigure}[b]{0.8\textwidth}
281                 \includegraphics[scale=0.86]{Images/inherit_graph_3.pdf}
282                 \stepsubfigcounter{}
283                 \caption{\code{Iterator} class hierarchy in \myprog{}}
284                 \label{hier_iterator}
285 \end{subfigure}\nextsubfig{}\begin{subfigure}[c]{0.4\textwidth}
286                 \includegraphics[scale=0.86]{Images/inherit_graph_12.pdf}
287                 \stepsubfigcounter{}
288                 \caption{\code{Exception} class hierarchy\\in \myprog{}}
289                 \label{hier_exception}
290 \end{subfigure}\begin{subfigure}[c]{0.5\textwidth}
291                 \includegraphics[scale=0.86]{Images/inherit_graph_4.pdf}
292                 \stepsubfigcounter{}
293                 \caption{\code{RuntimeException} class hierarchy in \myprog{}}
294                 \label{hier_rtexception}
295 \end{subfigure}
296         \stepfigcounter{}
297         \caption[Miscellaneous class hierarchies in \myprog{}]{
298                 Miscellaneous class hierarchies in \myprog{}.
299                 Interface names are italicized,
300                 external classes or interfaces are hemmed with a gray frame.}
301         \label{hiers_misc}
302 \end{figure}
303
304 \begin{table}[H]\begin{center}
305                 \begin{tabular}{l}
306                         \itm{} \code{main.Main}\\
307                         \itm{} \code{database.RetrieveDBSchema}\\
308                         \itm{} \code{database.Table}\\
309                         \itm{} \code{helpers.Helpers}\\
310                         \itm{} \code{helpers.SQLType}\\
311                         \itm{} \code{specification.OBDASpecification}\\
312                         \itm{} \code{osl.OSLSpecification}\\
313                         \itm{} \code{bootstrapping.Bootstrapping}\\
314                         \itm{} \code{cli.CLIDatabaseInteraction}\\
315                         \itm{} \code{log.GlobalLogger}\\
316                         \itm{} \code{test.CreateTestDBSchema}\\
317                         \itm{} \code{test.GetSomeDBSchema}\\
318                 \end{tabular}\\
319         \caption{Standalone classes in \myprog{}}
320         \label{lone_classes}
321 \end{center}\end{table}
322
323 Note that every class hierarchy has at least one \code{interface} at its top.
324 Classes not belonging to a class hierarchy were chosen not to be given an interface
325 ``factitiously'', which would have made them part of a (small) class hierarchy \cite{java}.
326 Deliberately, the scheme often recommended \cite{gof}
327 to give every class an interface it \code{implements} was not followed
328 but the approach described by Stroustrup \cite{str4} to provide a rich set of
329 so called ``concrete types'' not designed for use within class hierarchies, which
330 ``build the foundation of every well-designed program'' \cite{str4}.
331 The details of this consideration are explained in Paragraph~``\nameref{code_interfaces}''
332 in Section~\fullref{code_classes}.
333 In fact, many useful types were already offered by the \name{Java} API
334 and of course were not re-implemented.
335
336 Class \code{Column} with its interface \code{ReadableColumn} is an exception
337 in that it was given an interface although it is basically a concrete type.
338 The reason for this is the chosen way to implement const correctness,
339 described in Paragraph~``\nameref{const}''
340 (which is part of Section~\fullref{code_classes}) TODO.
341 This technique forced class \code{Column} to
342 \code{implement} an interface, thus needlessly making it part of a class hierarchy,
343 but also complicated the structure of some class hierarchies.
344 Consider the class hierarchy around \code{ColumnSet},
345 shown in Figure~\ref{hier_colset_simple}.
346 Definitely, it seems overly complicated at the first glance.
347 But this complexity solely is introduced by the artificial
348 \code{Readable...} interfaces;
349 would \name{Java} provide a mechanism like \name{C++}'s \code{const},
350 this hierarchy would be as simple as in TODO.
351
352 However, since const correctness is an important mechanism effectively preventing
353 errors while on the other hand introducing clarity by itself, it was considered
354 too important to be sacrificed, even for a cleaner and more intuitive class hierarchy.
355 The fact that the \code{Readable...} scheme is very straight-forward and a programmer
356 reading the documentation knows about its purpose and the real, much smaller,
357 complexity also makes some amends for the simplicity sacrificed.
358 The const correctness mechanism itself thereby hinders uninformed or ignorant
359 programmers from mistakenly using the wrong class in an interface in many cases.
360
361 For more information about the program structure on the class level,
362 see Section~\fullref{code}, while for a detailed class index refer to Appendix TODO.