-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathmimserveroptions.cpp
More file actions
388 lines (321 loc) · 11.6 KB
/
mimserveroptions.cpp
File metadata and controls
388 lines (321 loc) · 11.6 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/* * This file is part of Maliit framework *
*
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation
* and appearing in the file LICENSE.LGPL included in the packaging
* of this file.
*/
#include "mimserveroptions.h"
#include <stdio.h>
#include <string.h>
#include <QtGlobal>
#include <QList>
#include <QExplicitlySharedDataPointer>
#include <QSharedData>
namespace {
struct CommandLineParameter {
const char * name;
const char * description;
};
CommandLineParameter AvailableConnectionParameters[] = {
{ "-allow-anonymous", "Allow anonymous/unauthenticated use of DBus interface"},
{ "-override-address", "Override the DBus peer-to-peer address for input-context"}
};
struct IgnoredParameter {
const char * name;
bool hasArgument;
} IgnoredParameters [] = {
// Following parameters are used by Qt, so we should not show error messages or help about it
{ "-style", true },
{ "-session", true },
{ "-graphicssystem", true },
{ "-testability", true },
{ "-qdevel", false },
{ "-reverse", false },
{ "-stylesheet", false },
{ "-widgetcount", false },
{ "-qdebug", false },
{ "-software", false },
{ "-qws", false },
{ "-sync", false }
};
const char * programName = "meego-im-uiserver";
/*! \internal
* \brief Base class for parsers.
*/
struct MImServerOptionsParserBase : public QSharedData
{
MImServerOptionsParserBase(void *options);
virtual ~MImServerOptionsParserBase();
//! Result of parameter parsing
enum ParsingResult {
//! Parameter was not recognized
Invalid = -1,
//! Parameter was recognized
Ok,
};
/*!
* \brief Parse one \a parameter from command line.
* \param[in] next Next parameter if it exists, otherwise 0.
* It should be used if current \a parameter should have argument.
* \param[out] argumentCount Amount of arguments which follow \a paramter.
* Current implementation assumes that it should 0 or 1.
* \return Ok if \a parameter is recognized by this parser
* and should not be passed to other parsers, otherwise Invalid.
*/
virtual ParsingResult parseParameter(const char * parameter,
const char * next,
int *argumentCount) = 0;
/*!
* \brief Print options which could be recognized by this parser.
*/
virtual void printAvailableOptions(const char *format) = 0;
void *options() const;
private:
void *serverOptions;
};
typedef QExplicitlySharedDataPointer<MImServerOptionsParserBase> ParserBasePtr;
QList<ParserBasePtr> parsers;
//! Unregister parser associated with given \a options.
void unregisterParser(void *options)
{
QList<ParserBasePtr>::iterator iterator = parsers.begin();
while (iterator != parsers.end()) {
if ((*iterator)->options() == options) {
iterator = parsers.erase(iterator);
} else {
++iterator;
}
}
}
//! \brief Parser of common command line parameters
struct MImServerCommonOptionsParser : public MImServerOptionsParserBase
{
MImServerCommonOptionsParser(MImServerCommonOptions *options);
//! \reimp
virtual ParsingResult parseParameter(const char * parameter,
const char * next,
int *argumentCount);
virtual void printAvailableOptions(const char *format);
//! \reimp_end
private:
MImServerCommonOptions *storage;
};
/*!
* \brief Parser of command line parameters for the server<->input context connection
*/
struct MImServerConnectionOptionsParser : public MImServerOptionsParserBase
{
/*! \brief Construct new instance.
* Object should be created when application starts and should stay alive until moment
* when application will exit, so it is recommnded to create it in main().
* \note It does not makes sense tp create more than one object of this class.
*/
MImServerConnectionOptionsParser(MImServerConnectionOptions *options);
//! \reimp
virtual ParsingResult parseParameter(const char * parameter,
const char * next,
int *argumentCount);
virtual void printAvailableOptions(const char *format);
//! \reimp_end
private:
MImServerConnectionOptions *storage;
};
struct MImServerIgnoredOptions
{
MImServerIgnoredOptions();
~MImServerIgnoredOptions();
};
struct MImServerIgnoredOptionsParser : public MImServerOptionsParserBase
{
MImServerIgnoredOptionsParser(MImServerIgnoredOptions *options);
//! \reimp
virtual ParsingResult parseParameter(const char * parameter,
const char * next,
int *argumentCount);
virtual void printAvailableOptions(const char *format);
//! \reimp_end
};
//! \internal_end
// Always instantiate error suppressor, so main() should not worry about it
MImServerIgnoredOptions IgnoredOptions;
const char * const HelpFormat = "%-30s\t%s\n";
} // namespace
///////////////
// parser interface
MImServerOptionsParserBase::MImServerOptionsParserBase(void *options)
: serverOptions(options)
{
}
MImServerOptionsParserBase::~MImServerOptionsParserBase()
{
}
void* MImServerOptionsParserBase::options() const
{
return serverOptions;
}
bool parseCommandLine(int argc, const char * const * argv)
{
bool allRecognized = true;
if (argc > 0) {
programName = argv[0];
}
for (int n = 1; n < argc; ++n) {
const char * const parameter = argv[n];
const char * const next = (n < argc - 1) ? argv[n + 1] : 0;
MImServerOptionsParserBase::ParsingResult parsingResult = MImServerOptionsParserBase::Invalid;
Q_FOREACH (const ParserBasePtr &base, parsers) {
int skippedParameters = 0;
parsingResult = base->parseParameter(parameter, next, &skippedParameters);
if (parsingResult == MImServerOptionsParserBase::Ok) {
n += skippedParameters;
break;
}
}
if (parsingResult == MImServerOptionsParserBase::Invalid) {
fprintf(stderr, "Invalid parameter '%s'\n", argv[n]);
allRecognized = false;
}
}
return allRecognized;
}
void printHelpMessage()
{
fprintf(stderr, "\nUsage: %s [options]\n", programName);
fprintf(stderr, "Available options:\n");
Q_FOREACH (const ParserBasePtr &base, parsers) {
base->printAvailableOptions(HelpFormat);
}
// parsers will not be used anymore,
// therefore we can destroy them all
parsers.clear();
}
///////////////
// parser for ignored options
MImServerIgnoredOptionsParser::MImServerIgnoredOptionsParser(MImServerIgnoredOptions *options)
: MImServerOptionsParserBase(options)
{
}
MImServerOptionsParserBase::ParsingResult
MImServerIgnoredOptionsParser::parseParameter(const char *parameter,
const char *,
int *argumentCount)
{
const int count = sizeof(IgnoredParameters) / sizeof(IgnoredParameters[0]);
ParsingResult result = Invalid;
*argumentCount = 0;
for (int i = 0; i < count; ++i) {
if (!strcmp(parameter, IgnoredParameters[i].name)) {
result = Ok;
*argumentCount = IgnoredParameters[i].hasArgument ? 1 : 0;
break;
}
}
return result;
}
void MImServerIgnoredOptionsParser::printAvailableOptions(const char *)
{
// nothing to print
}
MImServerIgnoredOptions::MImServerIgnoredOptions()
{
const ParserBasePtr p(new MImServerIgnoredOptionsParser(this));
parsers.append(p);
}
MImServerIgnoredOptions::~MImServerIgnoredOptions()
{
unregisterParser(this);
}
///////////////
// parser for common options
MImServerCommonOptionsParser::MImServerCommonOptionsParser(MImServerCommonOptions *options)
: MImServerOptionsParserBase(options),
storage(options)
{
}
MImServerOptionsParserBase::ParsingResult
MImServerCommonOptionsParser::parseParameter(const char *parameter,
const char *,
int *argumentCount)
{
*argumentCount = 0;
if (!strcmp("-help", parameter)) {
storage->showHelp = true;
return Ok;
}
return Invalid;
}
void MImServerCommonOptionsParser::printAvailableOptions(const char *format)
{
fprintf(stderr, format, "-help", "Show usage information");
}
MImServerCommonOptions::MImServerCommonOptions()
: showHelp(false)
{
const ParserBasePtr p(new MImServerCommonOptionsParser(this));
parsers.append(p);
}
MImServerCommonOptions::~MImServerCommonOptions()
{
unregisterParser(this);
}
MImServerConnectionOptionsParser::MImServerConnectionOptionsParser(MImServerConnectionOptions *options)
: MImServerOptionsParserBase(options)
, storage(options)
{
}
MImServerOptionsParserBase::ParsingResult
MImServerConnectionOptionsParser::parseParameter(const char *parameter,
const char *next,
int *argumentCount)
{
const int count = sizeof(AvailableConnectionParameters) / sizeof(AvailableConnectionParameters[0]);
ParsingResult result = Invalid;
for (int i = 0; i < count; ++i) {
const char * const availableParameter = AvailableConnectionParameters[i].name;
if (!strcmp(parameter, availableParameter)) {
result = Ok;
if (!strcmp(parameter, "-allow-anonymous")) {
storage->allowAnonymous = true;
*argumentCount = 0;
} else if (!strcmp(parameter, "-override-address")) {
if (next) {
storage->overriddenAddress = QString::fromUtf8(next);
*argumentCount = 1;
} else {
fprintf(stderr, "ERROR: No argument passed to -override-address\n");
*argumentCount = 0;
}
} else {
fprintf(stderr, "ERROR: connection option %s declared but unhandled\n", parameter);
}
break;
}
}
return result;
}
void MImServerConnectionOptionsParser::printAvailableOptions(const char *format)
{
const int count = sizeof(AvailableConnectionParameters) / sizeof(AvailableConnectionParameters[0]);
for (int i = 0; i < count; ++i) {
if (AvailableConnectionParameters[i].description) {
fprintf(stderr, format, AvailableConnectionParameters[i].name,
AvailableConnectionParameters[i].description);
}
}
}
MImServerConnectionOptions::MImServerConnectionOptions()
: allowAnonymous(false)
{
const ParserBasePtr p(new MImServerConnectionOptionsParser(this));
parsers.append(p);
}
MImServerConnectionOptions::~MImServerConnectionOptions()
{
unregisterParser(this);
}