LibreOffice Module desktop (master) 1
cmdlineargs.hxx
Go to the documentation of this file.
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#pragma once
21
22#include <sal/config.h>
23
24#include <vector>
25
26#include <rtl/ustring.hxx>
27#include <optional>
28
29namespace desktop
30{
31
33{
34 public:
35 struct Supplier
36 {
37 // Thrown from constructors and next:
38 class Exception final
39 {
40 public:
41 Exception();
42 Exception(Exception const &);
44 };
45
46 virtual ~Supplier();
47 virtual std::optional< OUString > getCwdUrl() = 0;
48 virtual bool next(OUString * argument) = 0;
49 };
50
52 explicit CommandLineArgs( Supplier& supplier );
53
55 const CommandLineArgs& operator=(const CommandLineArgs&) = delete;
56
57 const std::optional< OUString >& getCwdUrl() const { return m_cwdUrl; }
58
59 // Access to bool parameters
60 bool IsMinimized() const { return m_minimized;}
61 bool IsInvisible() const
62 {
63 return m_invisible || m_headless;
64 }
65 bool IsNoRestore() const { return m_norestore;}
66 bool IsNoDefault() const { return m_nodefault;}
67 bool IsHeadless() const { return m_headless;}
68 bool IsQuickstart() const { return m_quickstart;}
69 bool IsNoQuickstart() const { return m_noquickstart;}
71 bool IsNoLogo() const { return m_nologo;}
72 bool IsNoLockcheck() const { return m_nolockcheck;}
73 bool IsHelp() const { return m_help;}
74 bool IsHelpWriter() const { return m_helpwriter;}
75 bool IsHelpCalc() const { return m_helpcalc;}
76 bool IsHelpDraw() const { return m_helpdraw;}
77 bool IsHelpImpress() const { return m_helpimpress;}
78 bool IsHelpBase() const { return m_helpbase;}
79 bool IsHelpMath() const { return m_helpmath;}
80 bool IsHelpBasic() const { return m_helpbasic;}
81 bool IsWriter() const { return m_writer;}
82 bool IsCalc() const { return m_calc;}
83 bool IsDraw() const { return m_draw;}
84 bool IsImpress() const { return m_impress;}
85 bool IsBase() const { return m_base;}
86 bool IsGlobal() const { return m_global;}
87 bool IsMath() const { return m_math;}
88 bool IsWeb() const { return m_web;}
89 bool IsVersion() const { return m_version;}
90 bool HasModuleParam() const;
91 bool WantsToLoadDocument() const { return m_bDocumentArgs;}
92 bool IsTextCat() const { return m_textcat;}
93 bool IsScriptCat() const { return m_scriptcat;}
94 bool IsSafeMode() const { return m_safemode; }
95
96 const OUString& GetUnknown() const { return m_unknown;}
97
98 // Access to string parameters
99 bool HasSplashPipe() const { return m_splashpipe;}
100 std::vector< OUString > const & GetAccept() const { return m_accept;}
101 std::vector< OUString > const & GetUnaccept() const { return m_unaccept;}
102 std::vector< OUString > GetOpenList() const;
103 std::vector< OUString > GetViewList() const;
104 std::vector< OUString > GetStartList() const;
105 std::vector< OUString > GetForceOpenList() const;
106 std::vector< OUString > GetForceNewList() const;
107 std::vector< OUString > GetPrintList() const;
108 std::vector< OUString > GetPrintToList() const;
109 const OUString& GetPrinterName() const { return m_printername;}
110 const OUString& GetLanguage() const { return m_language;}
111 std::vector< OUString > const & GetInFilter() const { return m_infilter;}
112 std::vector< OUString > GetConversionList() const;
113 const OUString& GetConversionParams() const { return m_conversionparams;}
114 OUString GetConversionOut() const;
115 OUString const & GetImageConversionType() const { return m_convertimages; }
116 const OUString& GetPidfileName() const { return m_pidfile;}
117
118 // Special analyzed states (does not match directly to a command line parameter!)
119 bool IsEmpty() const { return m_bEmpty;}
120
121 void setHeadless() { m_headless = true; }
122
123 private:
124 void ParseCommandLine_Impl( Supplier& supplier );
125 void InitParamValues();
126
127 std::optional< OUString > m_cwdUrl;
128
139 bool m_help;
141 bool m_calc;
142 bool m_draw;
145 bool m_math;
146 bool m_web;
147 bool m_base;
160
161 OUString m_unknown;
162
163 bool m_bEmpty; // No Args at all
164 bool m_bDocumentArgs; // A document creation/open/load arg is used
165 std::vector< OUString > m_accept;
166 std::vector< OUString > m_unaccept;
167 std::vector< OUString > m_openlist; // contains external URIs
168 std::vector< OUString > m_viewlist; // contains external URIs
169 std::vector< OUString > m_startlist; // contains external URIs
170 std::vector< OUString > m_forceopenlist; // contains external URIs
171 std::vector< OUString > m_forcenewlist; // contains external URIs
172 std::vector< OUString > m_printlist; // contains external URIs
173 std::vector< OUString > m_printtolist; // contains external URIs
175 std::vector< OUString > m_conversionlist; // contains external URIs
177 OUString m_conversionout; // contains external URIs
178 OUString m_convertimages; // The format in which images should be converted
179 std::vector< OUString > m_infilter;
180 OUString m_language;
181 OUString m_pidfile;
182};
183
184}
185
186/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Exception & operator=(Exception const &)
bool HasSplashPipe() const
Definition: cmdlineargs.hxx:99
std::vector< OUString > GetForceNewList() const
std::vector< OUString > m_unaccept
bool IsTerminateAfterInit() const
Definition: cmdlineargs.hxx:70
std::vector< OUString > m_openlist
const OUString & GetLanguage() const
std::vector< OUString > m_infilter
std::vector< OUString > GetConversionList() const
std::vector< OUString > m_printtolist
bool IsNoLockcheck() const
Definition: cmdlineargs.hxx:72
std::vector< OUString > m_forceopenlist
std::vector< OUString > m_accept
const OUString & GetPrinterName() const
OUString const & GetImageConversionType() const
OUString GetConversionOut() const
std::vector< OUString > GetViewList() const
std::vector< OUString > GetStartList() const
std::vector< OUString > const & GetAccept() const
std::vector< OUString > GetPrintList() const
std::vector< OUString > m_conversionlist
std::vector< OUString > m_startlist
std::vector< OUString > GetForceOpenList() const
const OUString & GetUnknown() const
Definition: cmdlineargs.hxx:96
const CommandLineArgs & operator=(const CommandLineArgs &)=delete
std::vector< OUString > m_printlist
std::vector< OUString > m_viewlist
const std::optional< OUString > & getCwdUrl() const
Definition: cmdlineargs.hxx:57
std::vector< OUString > GetPrintToList() const
std::vector< OUString > GetOpenList() const
bool IsNoQuickstart() const
Definition: cmdlineargs.hxx:69
bool WantsToLoadDocument() const
Definition: cmdlineargs.hxx:91
CommandLineArgs(const CommandLineArgs &)=delete
std::optional< OUString > m_cwdUrl
void ParseCommandLine_Impl(Supplier &supplier)
std::vector< OUString > const & GetInFilter() const
const OUString & GetPidfileName() const
std::vector< OUString > m_forcenewlist
bool IsHelpImpress() const
Definition: cmdlineargs.hxx:77
const OUString & GetConversionParams() const
std::vector< OUString > const & GetUnaccept() const
Definition: app.cxx:167
virtual bool next(OUString *argument)=0
virtual std::optional< OUString > getCwdUrl()=0