Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef INCLUDED_DESKTOP_SOURCE_APP_CMDLINEARGS_HXX
21 : #define INCLUDED_DESKTOP_SOURCE_APP_CMDLINEARGS_HXX
22 :
23 : #include "sal/config.h"
24 :
25 : #include <vector>
26 :
27 : #include <rtl/ustring.hxx>
28 : #include "boost/noncopyable.hpp"
29 : #include "boost/optional.hpp"
30 :
31 : namespace desktop
32 : {
33 :
34 1 : class CommandLineArgs: private boost::noncopyable
35 : {
36 : public:
37 1 : struct Supplier
38 : {
39 : // Thrown from constructors and next:
40 : class Exception {
41 : public:
42 : Exception();
43 : Exception(Exception const &);
44 : virtual ~Exception();
45 : Exception & operator =(Exception const &);
46 : };
47 :
48 : virtual ~Supplier();
49 : virtual boost::optional< OUString > getCwdUrl() = 0;
50 : virtual bool next(OUString * argument) = 0;
51 : };
52 :
53 : CommandLineArgs();
54 : CommandLineArgs( Supplier& supplier );
55 :
56 0 : boost::optional< OUString > getCwdUrl() const { return m_cwdUrl; }
57 :
58 : // Access to bool parameters
59 : bool IsMinimized() const;
60 : bool IsInvisible() const;
61 : bool IsNoRestore() const;
62 : bool IsNoDefault() const;
63 : bool IsHeadless() const;
64 : bool IsQuickstart() const;
65 : bool IsNoQuickstart() const;
66 : bool IsTerminateAfterInit() const;
67 : bool IsNoLogo() const;
68 : bool IsNoLockcheck() const;
69 : bool IsHelp() const;
70 : bool IsHelpWriter() const;
71 : bool IsHelpCalc() const;
72 : bool IsHelpDraw() const;
73 : bool IsHelpImpress() const;
74 : bool IsHelpBase() const;
75 : bool IsHelpMath() const;
76 : bool IsHelpBasic() const;
77 : bool IsWriter() const;
78 : bool IsCalc() const;
79 : bool IsDraw() const;
80 : bool IsImpress() const;
81 : bool IsBase() const;
82 : bool IsGlobal() const;
83 : bool IsMath() const;
84 : bool IsWeb() const;
85 : bool IsVersion() const;
86 : bool HasModuleParam() const;
87 : bool WantsToLoadDocument() const;
88 :
89 : OUString GetUnknown() const;
90 :
91 : // Access to string parameters
92 : bool HasSplashPipe() const;
93 : std::vector< OUString > const & GetAccept() const;
94 : std::vector< OUString > const & GetUnaccept() const;
95 : std::vector< OUString > GetOpenList() const;
96 : std::vector< OUString > GetViewList() const;
97 : std::vector< OUString > GetStartList() const;
98 : std::vector< OUString > GetForceOpenList() const;
99 : std::vector< OUString > GetForceNewList() const;
100 : std::vector< OUString > GetPrintList() const;
101 : std::vector< OUString > GetPrintToList() const;
102 : OUString GetPrinterName() const;
103 : OUString GetLanguage() const;
104 : std::vector< OUString > const & GetInFilter() const;
105 : std::vector< OUString > GetConversionList() const;
106 : OUString GetConversionParams() const;
107 : OUString GetConversionOut() const;
108 : OUString GetPidfileName() const;
109 :
110 : // Special analyzed states (does not match directly to a command line parameter!)
111 : bool IsEmpty() const;
112 :
113 : private:
114 : void ParseCommandLine_Impl( Supplier& supplier );
115 : void InitParamValues();
116 :
117 : boost::optional< OUString > m_cwdUrl;
118 :
119 : bool m_minimized;
120 : bool m_invisible;
121 : bool m_norestore;
122 : bool m_headless;
123 : bool m_quickstart;
124 : bool m_noquickstart;
125 : bool m_terminateafterinit;
126 : bool m_nofirststartwizard;
127 : bool m_nologo;
128 : bool m_nolockcheck;
129 : bool m_nodefault;
130 : bool m_help;
131 : bool m_writer;
132 : bool m_calc;
133 : bool m_draw;
134 : bool m_impress;
135 : bool m_global;
136 : bool m_math;
137 : bool m_web;
138 : bool m_base;
139 : bool m_helpwriter;
140 : bool m_helpcalc;
141 : bool m_helpdraw;
142 : bool m_helpbasic;
143 : bool m_helpmath;
144 : bool m_helpimpress;
145 : bool m_helpbase;
146 : bool m_version;
147 : bool m_splashpipe;
148 :
149 : OUString m_unknown;
150 :
151 : bool m_bEmpty; // No Args at all
152 : bool m_bDocumentArgs; // A document creation/open/load arg is used
153 : std::vector< OUString > m_accept;
154 : std::vector< OUString > m_unaccept;
155 : std::vector< OUString > m_openlist; // contains external URIs
156 : std::vector< OUString > m_viewlist; // contains external URIs
157 : std::vector< OUString > m_startlist; // contains external URIs
158 : std::vector< OUString > m_forceopenlist; // contains external URIs
159 : std::vector< OUString > m_forcenewlist; // contains external URIs
160 : std::vector< OUString > m_printlist; // contains external URIs
161 : std::vector< OUString > m_printtolist; // contains external URIs
162 : OUString m_printername;
163 : std::vector< OUString > m_conversionlist; // contains external URIs
164 : OUString m_conversionparams;
165 : OUString m_conversionout; // contains external URIs
166 : std::vector< OUString > m_infilter;
167 : OUString m_language;
168 : OUString m_pidfile;
169 : };
170 :
171 : }
172 :
173 : #endif
174 :
175 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|