Bump version to 4.3-4
[LibreOffice.git] / i18npool / source / localedata / LocaleNode.hxx
blob2c48206b070e23cd42d75eecb3eb457c5a93b626
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_I18NPOOL_SOURCE_LOCALEDATA_LOCALENODE_HXX
20 #define INCLUDED_I18NPOOL_SOURCE_LOCALEDATA_LOCALENODE_HXX
21 #include <com/sun/star/xml/sax/XParser.hpp>
22 #include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp>
24 #include <vector>
26 #include <com/sun/star/lang/XComponent.hpp>
27 #include <com/sun/star/xml/sax/SAXParseException.hpp>
28 #include <com/sun/star/io/XOutputStream.hpp>
29 #include <com/sun/star/io/XActiveDataSource.hpp>
31 #include <cppuhelper/implbase1.hxx>
32 #include <cppuhelper/implbase3.hxx>
34 using namespace ::rtl;
35 using namespace ::std;
36 using namespace ::cppu;
37 using namespace ::com::sun::star::uno;
38 using namespace ::com::sun::star::lang;
39 using namespace ::com::sun::star::xml::sax;
40 using namespace ::com::sun::star::io;
42 class OFileWriter
44 public:
45 OFileWriter(const char *pcFile, const char *locale );
46 ~OFileWriter();
47 void writeStringCharacters(const OUString& str) const;
48 void writeAsciiString(const char *str)const ;
49 void writeInt(sal_Int16 nb) const;
50 void writeFunction(const char *func, const char *count, const char *array) const;
51 void writeRefFunction(const char *func, const OUString& useLocale) const;
52 void writeFunction(const char *func, const char *count, const char *array, const char *from, const char *to) const;
53 void writeRefFunction(const char *func, const OUString& useLocale, const char *to) const;
54 void writeFunction2(const char *func, const char *style, const char* attr, const char *array) const;
55 void writeRefFunction2(const char *func, const OUString& useLocale) const;
56 void writeFunction3(const char *func, const char *style, const char* levels, const char* attr, const char *array) const;
57 void writeRefFunction3(const char *func, const OUString& useLocale) const;
58 void writeIntParameter(const sal_Char* pAsciiStr, const sal_Int16 count, sal_Int16 val) const;
59 bool writeDefaultParameter(const sal_Char* pAsciiStr, const OUString& str, sal_Int16 count) const;
60 void writeParameter(const sal_Char* pAsciiStr, const OUString& aChars) const;
61 void writeParameter(const sal_Char* pAsciiStr, const OUString& aChars, sal_Int16 count) const;
62 void writeParameter(const sal_Char* pAsciiStr, const OUString& aChars, sal_Int16 count0, sal_Int16 count1) const;
63 void writeParameter(const sal_Char* pTagStr, const sal_Char* pAsciiStr, const OUString& aChars, const sal_Int16 count) const;
64 void writeParameter(const sal_Char* pTagStr, const sal_Char* pAsciiStr, const OUString& aChars, sal_Int16 count0, sal_Int16 count1) const;
65 void closeOutput(void) const;
66 /// Return the locale string, something like en_US or de_DE
67 const char * getLocale() const { return theLocale; }
68 private:
69 char m_pcFile[1024];
70 char theLocale[50];
71 FILE *m_f;
74 class Attr {
75 Sequence <OUString> name;
76 Sequence <OUString> value;
78 public:
79 Attr (const Reference< XAttributeList > & attr);
80 const OUString& getValueByName (const sal_Char *str) const;
81 sal_Int32 getLength() const;
82 const OUString& getTypeByIndex (sal_Int32 idx) const;
83 const OUString& getValueByIndex (sal_Int32 idx) const ;
86 class LocaleNode
88 OUString aName;
89 OUString aValue;
90 Attr aAttribs;
91 LocaleNode * parent;
92 LocaleNode* * children;
93 sal_Int32 nChildren;
94 sal_Int32 childArrSize;
96 void setParent ( LocaleNode* node);
98 protected:
99 mutable int nError;
101 public:
102 LocaleNode (const OUString& name, const Reference< XAttributeList > & attr);
103 inline void setValue(const OUString &oValue) { aValue += oValue; };
104 inline const OUString& getName() const { return aName; };
105 inline const OUString& getValue() const { return aValue; };
106 inline const Attr& getAttr() const { return aAttribs; };
107 inline sal_Int32 getNumberOfChildren () const { return nChildren; };
108 inline LocaleNode * getChildAt (sal_Int32 idx) const { return children[idx] ; };
109 const LocaleNode * findNode ( const sal_Char *name) const;
110 void print () const;
111 void printR () const;
112 virtual ~LocaleNode();
113 void addChild ( LocaleNode * node);
114 const LocaleNode* getParent() const { return parent; };
115 const LocaleNode* getRoot() const;
116 int getError() const;
117 virtual void generateCode (const OFileWriter &of) const;
118 // MUST >= nMinLen
119 // nMinLen <= 0 : no error
120 // nMinLen > 0 : error if less than nMinLen characters
121 // SHOULD NOT > nMaxLen
122 // nMaxLen < 0 : any length
123 // nMaxLen >= 0 : warning if more than nMaxLen characters
124 OUString writeParameterCheckLen( const OFileWriter &of, const char* pParameterName, const LocaleNode* pNode, sal_Int32 nMinLen, sal_Int32 nMaxLen ) const;
125 OUString writeParameterCheckLen( const OFileWriter &of, const char* pNodeName, const char* pParameterName, sal_Int32 nMinLen, sal_Int32 nMaxLen ) const;
126 // ++nError with output to stderr
127 void incError( const char* pStr ) const;
128 // ++nError with output to stderr
129 void incError( const OUString& rStr ) const;
130 // ++nError with output to stderr, pStr should contain "%d", otherwise appended
131 void incErrorInt( const char* pStr, int nVal ) const;
132 // ++nError with output to stderr, pStr should contain "%s", otherwise appended
133 void incErrorStr( const char* pStr, const OUString& rVal ) const;
134 // ++nError with output to stderr, pStr should contain "%s %s", otherwise
135 // appended
136 void incErrorStrStr( const char* pStr, const OUString& rVal1, const OUString& rVal2 ) const;
137 // used by incError...(), returns a pointer to a static buffer,
138 // pDefaultConversion is appended if pFormat doesn't contain a %
139 // specification and should be something like ": %d" or ": %s" or similar.
140 char* prepareErrorFormat( const char* pFormat, const char* pDefaultConversion ) const;
141 static LocaleNode* createNode (const OUString& name,const Reference< XAttributeList > & attr);
144 class LCInfoNode : public LocaleNode {
145 public:
146 inline LCInfoNode (const OUString& name,
147 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
148 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
152 class LCCTYPENode : public LocaleNode {
153 public:
154 inline LCCTYPENode (const OUString& name,
155 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
157 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
160 class LCFormatNode : public LocaleNode {
161 static sal_Int16 mnSection;
162 static sal_Int16 mnFormats;
163 public:
164 inline LCFormatNode (const OUString& name,
165 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
167 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
170 class LCCollationNode : public LocaleNode {
171 public:
172 inline LCCollationNode (const OUString& name,
173 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
175 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
178 class LCIndexNode : public LocaleNode {
179 public:
180 inline LCIndexNode (const OUString& name,
181 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
183 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
186 class LCSearchNode : public LocaleNode {
187 public:
188 inline LCSearchNode (const OUString& name,
189 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
191 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
194 class LCCalendarNode : public LocaleNode {
195 public:
196 inline LCCalendarNode (const OUString& name,
197 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
199 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
202 class LCCurrencyNode : public LocaleNode {
203 public:
204 inline LCCurrencyNode (const OUString& name,
205 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
207 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
210 class LCTransliterationNode : public LocaleNode {
211 public:
212 inline LCTransliterationNode (const OUString& name,
213 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
215 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
218 class LCMiscNode : public LocaleNode {
219 public:
220 inline LCMiscNode (const OUString& name,
221 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
223 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
226 class LCNumberingLevelNode : public LocaleNode {
227 public:
228 inline LCNumberingLevelNode (const OUString& name,
229 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
231 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
234 class LCOutlineNumberingLevelNode : public LocaleNode {
235 public:
236 inline LCOutlineNumberingLevelNode (const OUString& name,
237 const Reference< XAttributeList > & attr) : LocaleNode (name, attr) { ; };
239 virtual void generateCode (const OFileWriter &of) const SAL_OVERRIDE;
242 #endif
244 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */