1 | /* -------------------------------------------------------------------------
|
---|
2 | * BKG NTRIP Client
|
---|
3 | * -------------------------------------------------------------------------
|
---|
4 | *
|
---|
5 | * Class: bncSettings
|
---|
6 | *
|
---|
7 | * Purpose: Subclasses the QSettings
|
---|
8 | *
|
---|
9 | * Author: L. Mervart
|
---|
10 | *
|
---|
11 | * Created: 25-Jan-2009
|
---|
12 | *
|
---|
13 | * Changes:
|
---|
14 | *
|
---|
15 | * -----------------------------------------------------------------------*/
|
---|
16 |
|
---|
17 | #include <QSettings>
|
---|
18 |
|
---|
19 | #include "bncsettings.h"
|
---|
20 | #include "bnccore.h"
|
---|
21 |
|
---|
22 | QMutex bncSettings::_mutex; // static mutex
|
---|
23 |
|
---|
24 | // Constructor
|
---|
25 | ////////////////////////////////////////////////////////////////////////////
|
---|
26 | bncSettings::bncSettings() {
|
---|
27 | QMutexLocker locker(&_mutex);
|
---|
28 |
|
---|
29 | // First fill the options
|
---|
30 | // ----------------------
|
---|
31 | if (BNC_CORE->_settings.size() == 0) {
|
---|
32 | reRead();
|
---|
33 | }
|
---|
34 | }
|
---|
35 |
|
---|
36 | // Destructor
|
---|
37 | ////////////////////////////////////////////////////////////////////////////
|
---|
38 | bncSettings::~bncSettings() {
|
---|
39 | }
|
---|
40 |
|
---|
41 | // (Re-)read the Options from File or Set the Defaults
|
---|
42 | ////////////////////////////////////////////////////////////////////////////
|
---|
43 | void bncSettings::reRead() {
|
---|
44 |
|
---|
45 | BNC_CORE->_settings.clear();
|
---|
46 |
|
---|
47 | QSettings settings(BNC_CORE->confFileName(), QSettings::IniFormat);
|
---|
48 |
|
---|
49 | #ifdef GNSSCENTER_PLUGIN
|
---|
50 | settings.beginGroup("BNC");
|
---|
51 | #endif
|
---|
52 |
|
---|
53 | // Read from File
|
---|
54 | // --------------
|
---|
55 | if (settings.allKeys().size() > 0) {
|
---|
56 | QStringListIterator it(settings.allKeys());
|
---|
57 | while (it.hasNext()) {
|
---|
58 | QString key = it.next();
|
---|
59 | BNC_CORE->_settings[key] = settings.value(key);
|
---|
60 | }
|
---|
61 | }
|
---|
62 |
|
---|
63 | // Set Defaults
|
---|
64 | // ------------
|
---|
65 | else {
|
---|
66 | setValue_p("startTab", "0");
|
---|
67 | setValue_p("statusTab", "0");
|
---|
68 | setValue_p("casterUrlList", (QStringList()
|
---|
69 | << "http://user:pass@www.euref-ip.net:2101"
|
---|
70 | << "http://user:pass@www.igs-ip.net:2101"
|
---|
71 | << "http://user:pass@products.igs-ip.net:2101"
|
---|
72 | << "http://user:pass@mgex.igs-ip.net:2101"));
|
---|
73 | setValue_p("mountPoints", "");
|
---|
74 | setValue_p("ntripVersion", "1");
|
---|
75 | // Network
|
---|
76 | setValue_p("proxyHost", "");
|
---|
77 | setValue_p("proxyPort", "");
|
---|
78 | setValue_p("sslCaCertPath", "");
|
---|
79 | setValue_p("ignoreSslErrors", "0");
|
---|
80 | // General
|
---|
81 | setValue_p("logFile", "");
|
---|
82 | setValue_p("rnxAppend", "0");
|
---|
83 | setValue_p("onTheFlyInterval", "1 day");
|
---|
84 | setValue_p("autoStart", "0");
|
---|
85 | setValue_p("rawOutFile", "");
|
---|
86 | // RINEX Observations
|
---|
87 | setValue_p("rnxPath", "");
|
---|
88 | setValue_p("rnxIntr", "1 day");
|
---|
89 | setValue_p("rnxSampl", "0");
|
---|
90 | setValue_p("rnxSkel", "SKL");
|
---|
91 | setValue_p("rnxScript", "");
|
---|
92 | setValue_p("rnxV3", "0");
|
---|
93 | // RINEX Ephemeris
|
---|
94 | setValue_p("ephPath", "");
|
---|
95 | setValue_p("ephIntr", "1 day");
|
---|
96 | setValue_p("outEphPort", "");
|
---|
97 | setValue_p("ephV3", "0");
|
---|
98 | // Braodcast Corrections
|
---|
99 | setValue_p("corrPath", "");
|
---|
100 | setValue_p("corrIntr", "1 day");
|
---|
101 | setValue_p("corrPort", "");
|
---|
102 | setValue_p("corrTime", "5");
|
---|
103 | // Feed Engine
|
---|
104 | setValue_p("outPort", "");
|
---|
105 | setValue_p("waitTime", "5");
|
---|
106 | setValue_p("binSampl", "0");
|
---|
107 | setValue_p("outFile", "");
|
---|
108 | setValue_p("outUPort", "");
|
---|
109 | // Serial Output
|
---|
110 | setValue_p("serialMountPoint", "");
|
---|
111 | setValue_p("serialPortName", "");
|
---|
112 | setValue_p("serialBaudRate", "9600");
|
---|
113 | setValue_p("serialFlowControl", "OFF");
|
---|
114 | setValue_p("serialDataBits", "8");
|
---|
115 | setValue_p("serialParity", "NONE");
|
---|
116 | setValue_p("serialStopBits", "1");
|
---|
117 | setValue_p("serialAutoNMEA", "Auto");
|
---|
118 | setValue_p("serialFileNMEA", "");
|
---|
119 | setValue_p("serialHeightNMEA", "");
|
---|
120 | // Outages
|
---|
121 | setValue_p("obsRate", "");
|
---|
122 | setValue_p("adviseFail", "15");
|
---|
123 | setValue_p("adviseReco", "5");
|
---|
124 | setValue_p("adviseScript", "");
|
---|
125 | // Miscellaneous
|
---|
126 | setValue_p("miscMount", "");
|
---|
127 | setValue_p("perfIntr", "");
|
---|
128 | setValue_p("scanRTCM", "0");
|
---|
129 | // PPP
|
---|
130 | setValue_p("pppSPP", "");
|
---|
131 | setValue_p("pppMount", "");
|
---|
132 | setValue_p("pppCorrMount", "");
|
---|
133 | setValue_p("pppRefCrdX", "");
|
---|
134 | setValue_p("pppRefCrdY", "");
|
---|
135 | setValue_p("pppRefCrdZ", "");
|
---|
136 | setValue_p("pppRefdN", "");
|
---|
137 | setValue_p("pppRefdE", "");
|
---|
138 | setValue_p("pppRefdU", "");
|
---|
139 | setValue_p("nmeaFile", "");
|
---|
140 | setValue_p("nmeaPort", "");
|
---|
141 | setValue_p("pppPlotCoordinates", "");
|
---|
142 | setValue_p("postObsFile", "");
|
---|
143 | setValue_p("postNavFile", "");
|
---|
144 | setValue_p("postCorrFile", "");
|
---|
145 | setValue_p("postOutFile", "");
|
---|
146 | setValue_p("pppAntenna", "");
|
---|
147 | setValue_p("pppAntex", "");
|
---|
148 | setValue_p("pppUsePhase", "");
|
---|
149 | setValue_p("pppEstTropo", "");
|
---|
150 | setValue_p("pppGLONASS", "");
|
---|
151 | setValue_p("pppGalileo", "");
|
---|
152 | setValue_p("pppSync", "");
|
---|
153 | setValue_p("pppAverage", "");
|
---|
154 | setValue_p("pppQuickStart", "");
|
---|
155 | setValue_p("pppMaxSolGap", "");
|
---|
156 | setValue_p("pppAudioResponse", "");
|
---|
157 | setValue_p("pppSigmaCode", "10.0");
|
---|
158 | setValue_p("pppSigmaPhase", "0.02");
|
---|
159 | setValue_p("pppSigCrd0", "100.0");
|
---|
160 | setValue_p("pppSigCrdP", "100.0");
|
---|
161 | setValue_p("pppSigTrp0", "0.1");
|
---|
162 | setValue_p("pppSigTrpP", "3e-6");
|
---|
163 | // Reqc
|
---|
164 | setValue_p("reqcAction", "");
|
---|
165 | setValue_p("reqcObsFile", "");
|
---|
166 | setValue_p("reqcNavFile", "");
|
---|
167 | setValue_p("reqcOutObsFile", "");
|
---|
168 | setValue_p("reqcOutNavFile", "");
|
---|
169 | setValue_p("reqcOutLogFile", "");
|
---|
170 | setValue_p("reqcPlotDir", "");
|
---|
171 | setValue_p("reqcSkyPlotSystems", "ALL");
|
---|
172 | setValue_p("reqcRnxVersion", "");
|
---|
173 | setValue_p("reqcSampling", "");
|
---|
174 | setValue_p("reqcStartDateTime", "");
|
---|
175 | setValue_p("reqcEndDateTime", "");
|
---|
176 | setValue_p("reqcRunBy", "");
|
---|
177 | setValue_p("reqcComment", "");
|
---|
178 | setValue_p("reqcOldMarkerName", "");
|
---|
179 | setValue_p("reqcNewMarkerName", "");
|
---|
180 | setValue_p("reqcOldAntennaName", "");
|
---|
181 | setValue_p("reqcNewAntennaName", "");
|
---|
182 | setValue_p("reqcOldReceiverName", "");
|
---|
183 | setValue_p("reqcNewReceiverName", "");
|
---|
184 | // Combination
|
---|
185 | setValue_p("combineStreams", "");
|
---|
186 | setValue_p("cmbMethod", "");
|
---|
187 | setValue_p("cmbMaxres", "");
|
---|
188 | setValue_p("cmbSampl", "10");
|
---|
189 | // Upload (clk)
|
---|
190 | setValue_p("uploadMountpointsOut","");
|
---|
191 | setValue_p("uploadIntr", "1 day");
|
---|
192 | setValue_p("uploadSamplRtcmEphCorr", "0");
|
---|
193 | setValue_p("uploadSamplSp3", "1");
|
---|
194 | setValue_p("uploadSamplClkRnx", "10");
|
---|
195 | setValue_p("trafo_dx", "");
|
---|
196 | setValue_p("trafo_dy", "");
|
---|
197 | setValue_p("trafo_dz", "");
|
---|
198 | setValue_p("trafo_dxr", "");
|
---|
199 | setValue_p("trafo_dyr", "");
|
---|
200 | setValue_p("trafo_dzr", "");
|
---|
201 | setValue_p("trafo_ox", "");
|
---|
202 | setValue_p("trafo_oy", "");
|
---|
203 | setValue_p("trafo_oz", "");
|
---|
204 | setValue_p("trafo_oxr", "");
|
---|
205 | setValue_p("trafo_oyr", "");
|
---|
206 | setValue_p("trafo_ozr", "");
|
---|
207 | setValue_p("trafo_sc", "");
|
---|
208 | setValue_p("trafo_scr", "");
|
---|
209 | setValue_p("trafo_t0", "");
|
---|
210 | // Upload (eph)
|
---|
211 | setValue_p("uploadEphHost", "");
|
---|
212 | setValue_p("uploadEphPort", "");
|
---|
213 | setValue_p("uploadEphMountpoint", "");
|
---|
214 | setValue_p("uploadEphPassword", "");
|
---|
215 | setValue_p("uploadEphSample", "5");
|
---|
216 | }
|
---|
217 | #ifdef GNSSCENTER_PLUGIN
|
---|
218 | settings.endGroup();
|
---|
219 | #endif
|
---|
220 | }
|
---|
221 |
|
---|
222 | //
|
---|
223 | ////////////////////////////////////////////////////////////////////////////
|
---|
224 | QVariant bncSettings::value(const QString& key,
|
---|
225 | const QVariant& defaultValue) const {
|
---|
226 | QMutexLocker locker(&_mutex);
|
---|
227 |
|
---|
228 | if (BNC_CORE->_settings.contains(key)) {
|
---|
229 | return BNC_CORE->_settings[key];
|
---|
230 | }
|
---|
231 | else {
|
---|
232 | return defaultValue;
|
---|
233 | }
|
---|
234 | }
|
---|
235 |
|
---|
236 | //
|
---|
237 | ////////////////////////////////////////////////////////////////////////////
|
---|
238 | void bncSettings::setValue(const QString &key, const QVariant& value) {
|
---|
239 | QMutexLocker locker(&_mutex);
|
---|
240 | setValue_p(key, value);
|
---|
241 | }
|
---|
242 |
|
---|
243 | //
|
---|
244 | ////////////////////////////////////////////////////////////////////////////
|
---|
245 | void bncSettings::setValue_p(const QString &key, const QVariant& value) {
|
---|
246 | BNC_CORE->_settings[key] = value;
|
---|
247 | }
|
---|
248 |
|
---|
249 | //
|
---|
250 | ////////////////////////////////////////////////////////////////////////////
|
---|
251 | void bncSettings::remove(const QString& key ) {
|
---|
252 | QMutexLocker locker(&_mutex);
|
---|
253 | BNC_CORE->_settings.remove(key);
|
---|
254 | }
|
---|
255 |
|
---|
256 | //
|
---|
257 | ////////////////////////////////////////////////////////////////////////////
|
---|
258 | void bncSettings::sync() {
|
---|
259 | QMutexLocker locker(&_mutex);
|
---|
260 | QSettings settings(BNC_CORE->confFileName(), QSettings::IniFormat);
|
---|
261 | settings.clear();
|
---|
262 | QMapIterator<QString, QVariant> it(BNC_CORE->_settings);
|
---|
263 | #ifdef GNSSCENTER_PLUGIN
|
---|
264 | settings.beginGroup("BNC");
|
---|
265 | #endif
|
---|
266 | while (it.hasNext()) {
|
---|
267 | it.next();
|
---|
268 | settings.setValue(it.key(), it.value());
|
---|
269 | }
|
---|
270 | #ifdef GNSSCENTER_PLUGIN
|
---|
271 | settings.endGroup();
|
---|
272 | #endif
|
---|
273 | settings.sync();
|
---|
274 | }
|
---|