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 ADC_ADC_CL_HXX
21 : #define ADC_ADC_CL_HXX
22 :
23 :
24 :
25 : // USED SERVICES
26 : // BASE CLASSES
27 : #include <cosv/comdline.hxx>
28 : // COMPONENTS
29 : // PARAMETERS
30 :
31 : namespace ary
32 : {
33 : class Repository;
34 : }
35 :
36 : namespace autodoc
37 : {
38 : namespace command
39 : {
40 : class Command;
41 : class CreateHtml;
42 : class SinceTagTransformationData;
43 : }
44 :
45 :
46 : /** Reads and runs an Autodoc command line.
47 : */
48 : class CommandLine : public csv::CommandLine_Ifc
49 : {
50 : public:
51 : // LIFECYCLE
52 : CommandLine();
53 : ~CommandLine();
54 : // OPERATIONS
55 : int Run() const;
56 :
57 : // INQUIRY
58 : // debugging
59 : bool DebugStyle_ShowText() const;
60 : bool DebugStyle_ShowStoredObjects() const;
61 : bool DebugStyle_ShowTokens() const;
62 :
63 : // @since tags
64 : bool DoesTransform_SinceTag() const;
65 :
66 : // /// @see command::SinceTagTransformationData::StripSinceTagValue()
67 : // bool Strip_SinceTagText(
68 : // String & io_sSinceTagValue ) const;
69 :
70 : /// @see command::SinceTagTransformationData::DisplayOf()
71 : const String & DisplayOf_SinceTagValue(
72 : const String & i_sVersionNumber ) const;
73 :
74 : // extern IDL links
75 0 : const String & ExternRoot() const { return sExternRoot; }
76 10 : const String & ExternNamespace() const { return sExternNamespace; }
77 :
78 1 : bool IdlUsed() const { return bIdl; }
79 :
80 : // ACCESS
81 : static CommandLine &
82 : Get_();
83 : void Set_ExternRoot(
84 : const String & i_s )
85 : { sExternRoot = i_s; }
86 : void Set_ExternNamespace(
87 : const String & i_s )
88 : { sExternNamespace = i_s; }
89 3 : ary::Repository & TheRepository() const { csv_assert(pReposy != 0);
90 3 : return *pReposy; }
91 1 : void Set_IdlUsed() { bIdl = true; }
92 :
93 : private:
94 : // Interface cosv::CommandLine_Ifc:
95 : virtual void do_Init(
96 : int argc,
97 : char * argv[] );
98 : virtual void do_PrintUse() const;
99 : virtual bool inq_CheckParameters() const;
100 :
101 : // Locals
102 : typedef StringVector::const_iterator opt_iter;
103 : typedef std::vector< DYN command::Command* > CommandList;
104 :
105 : void load_IncludedCommands(
106 : StringVector & out,
107 : const char * i_filePath );
108 :
109 : void do_clVerbose(
110 : opt_iter & it,
111 : opt_iter itEnd );
112 : void do_clParse(
113 : opt_iter & it,
114 : opt_iter itEnd );
115 : void do_clCreateHtml(
116 : opt_iter & it,
117 : opt_iter itEnd );
118 : void do_clSinceFile(
119 : opt_iter & it,
120 : opt_iter itEnd );
121 :
122 : // void do_clCreateXml(
123 : // opt_iter & it,
124 : // opt_iter itEnd );
125 : // void do_clLoad(
126 : // opt_iter & it,
127 : // opt_iter itEnd );
128 : // void do_clSave(
129 : // opt_iter & it,
130 : // opt_iter itEnd );
131 :
132 : void sort_Commands();
133 :
134 : // DATA
135 : uintt nDebugStyle;
136 : Dyn<command::SinceTagTransformationData>
137 : pSinceTransformator;
138 :
139 : CommandList aCommands;
140 : bool bInitOk;
141 : command::CreateHtml *
142 : pCommand_CreateHtml;
143 :
144 : String sExternRoot;
145 : String sExternNamespace;
146 :
147 : mutable Dyn<ary::Repository>
148 : pReposy;
149 : bool bIdl;
150 :
151 : static CommandLine *
152 : pTheInstance_;
153 : };
154 :
155 :
156 :
157 : // IMPLEMENTATION
158 : inline bool
159 11430960 : CommandLine::DebugStyle_ShowText() const
160 11430960 : { return (nDebugStyle & 2) != 0; }
161 : inline bool
162 : CommandLine::DebugStyle_ShowStoredObjects() const
163 : { return (nDebugStyle & 4) != 0; }
164 : inline bool
165 526996 : CommandLine::DebugStyle_ShowTokens() const
166 526996 : { return (nDebugStyle & 1) != 0; }
167 :
168 : } // namespace autodoc
169 :
170 :
171 : inline bool
172 11430960 : DEBUG_ShowText()
173 11430960 : { return autodoc::CommandLine::Get_().DebugStyle_ShowText(); }
174 : inline bool
175 : DEBUG_ShowStoring()
176 : { return autodoc::CommandLine::Get_().DebugStyle_ShowStoredObjects(); }
177 : inline bool
178 526996 : DEBUG_ShowTokens()
179 526996 : { return autodoc::CommandLine::Get_().DebugStyle_ShowTokens(); }
180 :
181 : #endif
182 :
183 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|