blob: 577b50e1af3ab619d04624df65ec18e5ffd00d1d (
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
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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_DESKTOP_SOURCE_APP_CMDLINEARGS_HXX
#define INCLUDED_DESKTOP_SOURCE_APP_CMDLINEARGS_HXX
#include <sal/config.h>
#include <vector>
#include <rtl/ustring.hxx>
#include <optional>
namespace desktop
{
class CommandLineArgs
{
public:
struct Supplier
{
// Thrown from constructors and next:
class Exception final
{
public:
Exception();
Exception(Exception const &);
~Exception();
Exception & operator =(Exception const &);
};
virtual ~Supplier();
virtual std::optional< OUString > getCwdUrl() = 0;
virtual bool next(OUString * argument) = 0;
};
CommandLineArgs();
explicit CommandLineArgs( Supplier& supplier );
CommandLineArgs(const CommandLineArgs&) = delete;
const CommandLineArgs& operator=(const CommandLineArgs&) = delete;
const std::optional< OUString >& getCwdUrl() const { return m_cwdUrl; }
// Access to bool parameters
bool IsMinimized() const { return m_minimized;}
bool IsInvisible() const
{
return m_invisible || (m_headless && !m_eventtesting);
}
bool IsNoRestore() const { return m_norestore;}
bool IsNoDefault() const { return m_nodefault;}
bool IsHeadless() const { return m_headless;}
bool IsEventTesting() const { return m_eventtesting;}
bool IsQuickstart() const { return m_quickstart;}
bool IsNoQuickstart() const { return m_noquickstart;}
bool IsTerminateAfterInit() const { return m_terminateafterinit;}
bool IsNoLogo() const { return m_nologo;}
bool IsNoLockcheck() const { return m_nolockcheck;}
bool IsHelp() const { return m_help;}
bool IsHelpWriter() const { return m_helpwriter;}
bool IsHelpCalc() const { return m_helpcalc;}
bool IsHelpDraw() const { return m_helpdraw;}
bool IsHelpImpress() const { return m_helpimpress;}
bool IsHelpBase() const { return m_helpbase;}
bool IsHelpMath() const { return m_helpmath;}
bool IsHelpBasic() const { return m_helpbasic;}
bool IsWriter() const { return m_writer;}
bool IsCalc() const { return m_calc;}
bool IsDraw() const { return m_draw;}
bool IsImpress() const { return m_impress;}
bool IsBase() const { return m_base;}
bool IsGlobal() const { return m_global;}
bool IsMath() const { return m_math;}
bool IsWeb() const { return m_web;}
bool IsVersion() const { return m_version;}
bool HasModuleParam() const;
bool WantsToLoadDocument() const { return m_bDocumentArgs;}
bool IsTextCat() const { return m_textcat;}
bool IsScriptCat() const { return m_scriptcat;}
bool IsSafeMode() const { return m_safemode; }
const OUString& GetUnknown() const { return m_unknown;}
// Access to string parameters
bool HasSplashPipe() const { return m_splashpipe;}
std::vector< OUString > const & GetAccept() const { return m_accept;}
std::vector< OUString > const & GetUnaccept() const { return m_unaccept;}
std::vector< OUString > GetOpenList() const;
std::vector< OUString > GetViewList() const;
std::vector< OUString > GetStartList() const;
std::vector< OUString > GetForceOpenList() const;
std::vector< OUString > GetForceNewList() const;
std::vector< OUString > GetPrintList() const;
std::vector< OUString > GetPrintToList() const;
const OUString& GetPrinterName() const { return m_printername;}
const OUString& GetLanguage() const { return m_language;}
std::vector< OUString > const & GetInFilter() const { return m_infilter;}
std::vector< OUString > GetConversionList() const;
const OUString& GetConversionParams() const { return m_conversionparams;}
OUString GetConversionOut() const;
OUString const & GetImageConversionType() const { return m_convertimages; }
const OUString& GetPidfileName() const { return m_pidfile;}
// Special analyzed states (does not match directly to a command line parameter!)
bool IsEmpty() const { return m_bEmpty;}
void setHeadless() { m_headless = true; }
private:
void ParseCommandLine_Impl( Supplier& supplier );
void InitParamValues();
std::optional< OUString > m_cwdUrl;
bool m_minimized;
bool m_invisible;
bool m_norestore;
bool m_headless;
bool m_eventtesting;
bool m_quickstart;
bool m_noquickstart;
bool m_terminateafterinit;
bool m_nologo;
bool m_nolockcheck;
bool m_nodefault;
bool m_help;
bool m_writer;
bool m_calc;
bool m_draw;
bool m_impress;
bool m_global;
bool m_math;
bool m_web;
bool m_base;
bool m_helpwriter;
bool m_helpcalc;
bool m_helpdraw;
bool m_helpbasic;
bool m_helpmath;
bool m_helpimpress;
bool m_helpbase;
bool m_version;
bool m_splashpipe;
bool m_textcat;
bool m_scriptcat;
bool m_safemode;
OUString m_unknown;
bool m_bEmpty; // No Args at all
bool m_bDocumentArgs; // A document creation/open/load arg is used
std::vector< OUString > m_accept;
std::vector< OUString > m_unaccept;
std::vector< OUString > m_openlist; // contains external URIs
std::vector< OUString > m_viewlist; // contains external URIs
std::vector< OUString > m_startlist; // contains external URIs
std::vector< OUString > m_forceopenlist; // contains external URIs
std::vector< OUString > m_forcenewlist; // contains external URIs
std::vector< OUString > m_printlist; // contains external URIs
std::vector< OUString > m_printtolist; // contains external URIs
OUString m_printername;
std::vector< OUString > m_conversionlist; // contains external URIs
OUString m_conversionparams;
OUString m_conversionout; // contains external URIs
OUString m_convertimages; // The format in which images should be converted
std::vector< OUString > m_infilter;
OUString m_language;
OUString m_pidfile;
};
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|