]> vaikene.ee Git - evaf/blob - www/pswgen11.html
Warning fixes and copyright update.
[evaf] / www / pswgen11.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html lang="et" xmlns="http://www.w3.org/1999/xhtml" xml:lang="et">
3
4 <head>
5 <meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" />
6 <title>eVaf Tutorial - 11 - Building PswGen application</title>
7 <meta name="Author" content="Enar Väikene" />
8 <meta name="description" content="eVaf Tutorial" />
9 <meta name="keywords" content="evaf c++ application development framework tutorial password generator" />
10 <link rel="StyleSheet" href="evaf.css" type="text/css" media="all" />
11 <link rel="StyleSheet" href="highlight.css" type="text/css" media="all" />
12 </head>
13
14 <body>
15
16 <p>Previous: <a href="pswgen10.html">10 - GUI Module</a></p>
17
18 <h1>eVaf Tutorial</h1>
19
20 <h2>11 - Buiding PswGen application</h2>
21
22 <h3>CMakeLists.txt</h3>
23
24 <p>Copy an existing <tt>CMakeLists.txt</tt> file from the <tt>Storage</tt> module:</p>
25
26 <pre>evaf/src/apps/PswGen/GUI $ <code>cp ../Storage/CMakeLists.txt .</code></pre>
27
28 <p>We need to modify the <tt>TARGET</tt> variable and remove <tt>QT_USE_QTSQL</tt> and <tt>QT_DONT_USE_QTGUI</tt> variables.
29 This module needs <tt>QtGui</tt> and does not need <tt>QtSql</tt>. Als add <tt>SdiWindow</tt> to the list of eVaf libraries
30 as the module that implements the main window.</p>
31
32 <pre class="hl"><span class="hl com"># Name of the target</span>
33 <span class="hl kwa">set</span><span class="hl opt">(</span>TARGET PswGui<span class="hl opt">)</span>
34
35 <span class="hl com"># Qt modules</span>
36 <span class="hl kwa">include</span><span class="hl opt">(</span><span class="hl kwd">${QT_USE_FILE}</span><span class="hl opt">)</span>
37
38 <span class="hl com"># Required eVaf libraries</span>
39 <span class="hl kwa">set</span><span class="hl opt">(</span>eVaf_LIBRARIES CommonLib PluginsLib SdiWindow<span class="hl opt">)</span></pre>
40
41 <p>Here is the final <tt>CMakeLists.txt</tt> file:</p>
42
43 <pre class="hl"><span class="hl com"># src/apps/PswGen/GUI/CMakeLists.txt</span>
44
45 <span class="hl com"># Name of the target</span>
46 <span class="hl kwa">set</span><span class="hl opt">(</span>TARGET PswGui<span class="hl opt">)</span>
47
48 <span class="hl com"># Qt modules</span>
49 <span class="hl kwa">include</span><span class="hl opt">(</span><span class="hl kwd">${QT_USE_FILE}</span><span class="hl opt">)</span>
50
51 <span class="hl com"># Include directories</span>
52 <span class="hl kwa">include_directories</span><span class="hl opt">(</span><span class="hl kwd">${eVaf_INCLUDE}<span class="hl opt">)</span>
53
54 <span class="hl com"># Required eVaf libraries</span>
55 <span class="hl kwa">set</span><span class="hl opt">(</span>eVaf_LIBRARIES CommonLib PluginsLib SdiWindow<span class="hl opt">)</span>
56
57 <span class="hl com"># Source files</span>
58 <span class="hl kwa">set</span><span class="hl opt">(</span>SRCS
59 gui.cpp
60 <span class="hl opt">)</span>
61
62 <span class="hl com"># Header files for the Qt meta-object compiler</span>
63 <span class="hl kwa">set</span><span class="hl opt">(</span>MOC_HDRS
64 gui.h
65 <span class="hl opt">)</span>
66
67 <span class="hl com"># Version info resource file for Windows builds</span>
68 <span class="hl kwa">if</span><span class="hl opt">(</span><span class="hl kwb">WIN32</span><span class="hl opt">)</span>
69 <span class="hl kwa">set</span><span class="hl opt">(</span>SRCS <span class="hl kwd">${SRCS}</span> version.rc<span class="hl opt">)</span>
70 <span class="hl kwa">endif</span><span class="hl opt">(</span><span class="hl kwb">WIN32</span><span class="hl opt">)</span>
71
72 <span class="hl com"># Run the Qt meta-object compiler</span>
73 <span class="hl kwd">qt4_wrap_cpp</span><span class="hl opt">(</span>MOC_SRCS <span class="hl kwd">${MOC_HDRS}</span><span class="hl opt">)</span>
74
75 <span class="hl com"># Compile the module</span>
76 <span class="hl kwa">add_library</span><span class="hl opt">(</span><span class="hl kwd">${TARGET}</span> <span class="hl kwb">SHARED</span> <span class="hl kwd">${SRCS} ${MOC_SRCS}</span><span class="hl opt">)</span>
77
78 <span class="hl com"># Link the module</span>
79 <span class="hl kwa">target_link_libraries</span><span class="hl opt">(</span><span class="hl kwd">${TARGET} ${QT_LIBRARIES} ${eVaf_LIBRARIES}</span><span class="hl opt">)</span></pre>
80
81 <p>Open the <tt>CMakeLists.txt</tt> file in the parent directory and add the command to include the <tt>GUI</tt>
82 sub-directory:</p>
83
84 <pre class="hl"><span class="hl com"># src/apps/PswGen/CMakeLists.txt</span>
85 <span class="hl com"># ...</span>
86 <span class="hl kwa">add_subdirectory</span><span class="hl opt">(</span>GUI<span class="hl opt">)</span></pre>
87
88 <h3>Building the module</h3>
89
90 <p>Go to the previously made <tt>build</tt> directory and build the module:</p>
91
92 <pre>evaf $ <code>cd build</code>
93 evaf/build $ <code>make PswGui</code></pre>
94
95 <p>Check the <tt>bin</tt> directory, which should now contain two new libraries:</p>
96
97 <pre>evaf/build $ <code>ls bin</code>
98 libCommonLib.so* libPluginsLib.so* libPswGen.so* <b>libPswGui.so*</b> libPswStorage.so* <b>libSdiWindow.so*</b>
99 evaf/build $</pre>
100
101 <p>The <tt>libSdiWindow.so</tt> library was built because it is a dependency of the <tt>GUI</tt> module.</p>
102
103 <h3>Running the PswGen application</h3>
104
105 <p>In the same <tt>build</tt> directory, create few more sub-directories needed by any <tt>eVaf</tt> applications:</p>
106
107 <pre> evaf/build $ <code>mkdir {etc,log}</code></pre>
108
109 <p>Create the <tt>PswGen.xml</tt> file in the <tt>build/etc</tt> directory. The <tt>PswGen.xml</tt> file defines the
110 application by specifying all the modules that the application needs to load.</p>
111
112 <pre class="hl"><span class="hl kwa">&lt;?xml</span> <span class="hl kwb">version</span>=<span class="hl str">&quot;1.0&quot;</span> <span class="hl kwb">encoding</span>=<span class="hl str">&quot;UTF-8&quot;</span><span class="hl kwa">?&gt;</span>
113 <span class="hl kwa">&lt;!DOCTYPE</span> eVaf<span class="hl kwa">&gt;</span>
114 <span class="hl kwa">&lt;eVaf</span> <span class="hl kwb">version</span>=<span class="hl str">&quot;1.0&quot;</span><span class="hl kwa">&gt;</span>
115 <span class="hl kwa">&lt;plugins&gt;</span>
116 <span class="hl kwa">&lt;plugin</span> <span class="hl kwb">name</span>=<span class="hl str">&quot;SdiWindow&quot;</span> <span class="hl kwb">filename</span>=<span class="hl str">&quot;SdiWindow&quot;</span> <span class="hl kwa">/&gt;</span>
117 <span class="hl kwa">&lt;plugin</span> <span class="hl kwb">name</span>=<span class="hl str">&quot;Generator&quot;</span> <span class="hl kwb">filename</span>=<span class="hl str">&quot;PswGen&quot;</span> <span class="hl kwa">/&gt;</span>
118 <span class="hl kwa">&lt;plugin</span> <span class="hl kwb">name</span>=<span class="hl str">&quot;Storage&quot;</span> <span class="hl kwb">filename</span>=<span class="hl str">&quot;PswStorage&quot;</span> <span class="hl kwa">/&gt;</span>
119 <span class="hl kwa">&lt;plugin</span> <span class="hl kwb">name</span>=<span class="hl str">&quot;GUI&quot;</span> <span class="hl kwb">filename</span>=<span class="hl str">&quot;PswGui&quot;</span> <span class="hl kwa">/&gt;</span>
120 <span class="hl kwa">&lt;/plugins&gt;</span>
121 <span class="hl kwa">&lt;/eVaf&gt;</span></pre>
122
123 <p>Modules are loaded and initialized in the order how they are specified in the xml file. We have to make sure that
124 <tt>SdiWindow</tt>, <tt>Generator</tt> and <tt>Storage</tt> modules are loaded before the <tt>GUI</tt> module. Otherwise
125 their interfaces wouldn't be available when the <tt>GUI</tt> module is initialized.</p>
126
127 <p>The <tt>name</tt> attribute here is optional and will be replaced with the name reported by the actual module.</p>
128
129 <p>The <tt>filename</tt> attribute specifies the name of the library file without prefixes and suffixes meaning that
130 <tt>lib<b>PswGen</b>.so</tt> shall be specified as <tt>PswGen</tt>. This makes sure that the same xml file can be also used
131 on Windows, where the library would be called <tt><b>PswGen</b>.dll</tt>.</p>
132
133 <p>There is no executable file yet that we can run. Build it with the following command:</p>
134
135 <pre>evaf/build $ <code>make eVafGUI</code></pre>
136
137 <p>This command builds the GUI executable and stores it in the <tt>evaf/build/bin</tt> directory. The <tt>bin</tt> directory should look now the following:</p>
138
139 <pre>evaf/build $ <code>ls bin</code>
140 eVafGUI* libCommonLib.so* libPluginsLib.so* libPswGen.so* libPswGui.so* libPswStorage.so* libSdiWindow.so*
141 evaf/build $</pre>
142
143 <p>Now we can run the PswGen application. Change <tt>--dataroot=${HOME}/evaf/build</tt> to your actual build directory name:</p>
144
145 <pre>evaf/build $ <code>bin/eVafGUI --application=PswGen --dataroot=${HOME}/evaf/build --verbose=INFO</code></pre>
146
147 <p>The <tt>--application=PswGen</tt> command line option specifies the name of the application and also means that the xml file
148 should be called <tt>PswGen.xml</tt>. Different applications can be run in the same build directories by changing the name
149 of the application. The default application is called <tt>eVaf</tt> and if no name is given, then the xml file should be called
150 <tt>eVaf.xml</tt>.</p>
151
152 <p>The <tt>--dataroot=${HOME}/evaf/build</tt> command line option specifies the location of data files for the application. The
153 application assumes that <tt>etc</tt> and <tt>spool</tt> directories are sub-directories in the data root directory. The default
154 data root directory is <tt>${HOME}/.local/share/data</tt> on
155 Linux.</p>
156
157 <p>Finally, the <tt>--verbose=INFO</tt> command line option makes the application to be verbose and output all the info
158 messages to the console.</p>
159
160 <h3>Releasing the PswGen application</h3>
161
162 <p>Now the application is written and tested. We are ready to make a release build and ship it.</p>
163
164 <p>Clean the build directory:</p>
165
166 <pre>evaf/build $ <code>make clean &amp;&amp; rm CMakeCache.txt</code></pre>
167
168 <p>Prepare for a release build and build the application:</p>
169
170 <pre>evaf/build $ <code>cmake -DCMAKE_BUILD_TYPE=Release ..</code>
171 evaf/build $ <code>make eVafGUI SdiWindow PswGen PswStorage PswGui</code></pre>
172
173 <p>Packaging and shipping the application is out of the scope of this tutorial and involves more than just copying files that
174 we built. As a minimum, we have to make sure that the target system has Qt libraries installed. In this tutorial, we simply copy the
175 released application into the <tt>{$HOME}/bin/evaf</tt> directory. Qt libraries are already installed and we do not need to
176 worry about them.</p>
177
178 <p>Create the <tt>${HOME}/bin/evaf</tt> directory:</p>
179
180 <pre>evaf/build $ <code>mkdir -p ${HOME}/bin/evaf</code></pre>
181
182 <p>Copy the content of <tt>bin</tt> and </tt>etc</tt> directories</p>
183
184 <pre>evaf/build $ <code>cp -R bin etc ${HOME}/bin/evaf/</code></pre>
185
186 <p>Create the bash script <tt>PswGen</tt> in the <tt>${HOME}/bin</tt> directory:</p>
187
188 <pre class="hl"><span class="hl slc">#!/bin/bash</span>
189 EVAF_DIR<span class="hl opt">=</span><span class="hl kwd">${HOME}</span><span class="hl opt">/</span>bin<span class="hl opt">/</span>evaf
190 <span class="hl kwd">${EVAF_DIR}</span><span class="hl opt">/</span>bin<span class="hl opt">/</span>eVafGUI <span class="hl opt">--</span>rootdir<span class="hl opt">=</span><span class="hl kwd">${EVAF_DIR}</span> <span class="hl opt">--</span>dataroot<span class="hl opt">=</span><span class="hl kwd">${EVAF_DIR}</span> <span class="hl opt">--</span>application<span class="hl opt">=</span>PswGen
191 </pre>
192
193 <p>Don't forget to make it runnable:</p>
194
195 <pre> bin $ <code>chmod a+x PswGen</code></pre>
196
197 <p>Now we can run the application by simply running the bash script <tt>PswGen</tt> in the <tt>${HOME}/bin</tt> directory.
198
199 </body>
200 </html>