1*a2faadffSAndrew Rist /**************************************************************
2*a2faadffSAndrew Rist  *
3*a2faadffSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*a2faadffSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*a2faadffSAndrew Rist  * distributed with this work for additional information
6*a2faadffSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*a2faadffSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*a2faadffSAndrew Rist  * "License"); you may not use this file except in compliance
9*a2faadffSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*a2faadffSAndrew Rist  *
11*a2faadffSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*a2faadffSAndrew Rist  *
13*a2faadffSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*a2faadffSAndrew Rist  * software distributed under the License is distributed on an
15*a2faadffSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*a2faadffSAndrew Rist  * KIND, either express or implied.  See the License for the
17*a2faadffSAndrew Rist  * specific language governing permissions and limitations
18*a2faadffSAndrew Rist  * under the License.
19*a2faadffSAndrew Rist  *
20*a2faadffSAndrew Rist  *************************************************************/
21*a2faadffSAndrew Rist 
22*a2faadffSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef INCLUDED_CONFIGMGR_SOURCE_VALUEPARSER_HXX
25cdf0e10cSrcweir #define INCLUDED_CONFIGMGR_SOURCE_VALUEPARSER_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "sal/config.h"
28cdf0e10cSrcweir 
29cdf0e10cSrcweir #include <vector>
30cdf0e10cSrcweir 
31cdf0e10cSrcweir #include "boost/noncopyable.hpp"
32cdf0e10cSrcweir #include "rtl/ref.hxx"
33cdf0e10cSrcweir #include "rtl/string.hxx"
34cdf0e10cSrcweir #include "rtl/ustring.hxx"
35cdf0e10cSrcweir #include "xmlreader/pad.hxx"
36cdf0e10cSrcweir #include "xmlreader/xmlreader.hxx"
37cdf0e10cSrcweir 
38cdf0e10cSrcweir #include "type.hxx"
39cdf0e10cSrcweir 
40cdf0e10cSrcweir namespace com { namespace sun { namespace star { namespace uno {
41cdf0e10cSrcweir     class Any;
42cdf0e10cSrcweir } } } }
43cdf0e10cSrcweir namespace xmlreader { struct Span; }
44cdf0e10cSrcweir 
45cdf0e10cSrcweir namespace configmgr {
46cdf0e10cSrcweir 
47cdf0e10cSrcweir class Node;
48cdf0e10cSrcweir 
49cdf0e10cSrcweir class ValueParser: private boost::noncopyable {
50cdf0e10cSrcweir public:
51cdf0e10cSrcweir     ValueParser(int layer);
52cdf0e10cSrcweir 
53cdf0e10cSrcweir     ~ValueParser();
54cdf0e10cSrcweir 
55cdf0e10cSrcweir     xmlreader::XmlReader::Text getTextMode() const;
56cdf0e10cSrcweir 
57cdf0e10cSrcweir     bool startElement(
58cdf0e10cSrcweir         xmlreader::XmlReader & reader, int nsId, xmlreader::Span const & name);
59cdf0e10cSrcweir 
60cdf0e10cSrcweir     bool endElement();
61cdf0e10cSrcweir 
62cdf0e10cSrcweir     void characters(xmlreader::Span const & text);
63cdf0e10cSrcweir 
64cdf0e10cSrcweir     void start(
65cdf0e10cSrcweir         rtl::Reference< Node > const & property,
66cdf0e10cSrcweir         rtl::OUString const & localizedName = rtl::OUString());
67cdf0e10cSrcweir 
68cdf0e10cSrcweir     int getLayer() const;
69cdf0e10cSrcweir 
70cdf0e10cSrcweir     Type type_;
71cdf0e10cSrcweir     rtl::OString separator_;
72cdf0e10cSrcweir 
73cdf0e10cSrcweir private:
74cdf0e10cSrcweir     template< typename T > com::sun::star::uno::Any convertItems();
75cdf0e10cSrcweir 
76cdf0e10cSrcweir     enum State { STATE_TEXT, STATE_TEXT_UNICODE, STATE_IT, STATE_IT_UNICODE };
77cdf0e10cSrcweir 
78cdf0e10cSrcweir     int layer_;
79cdf0e10cSrcweir     rtl::Reference< Node > node_;
80cdf0e10cSrcweir     rtl::OUString localizedName_;
81cdf0e10cSrcweir     State state_;
82cdf0e10cSrcweir     xmlreader::Pad pad_;
83cdf0e10cSrcweir     std::vector< com::sun::star::uno::Any > items_;
84cdf0e10cSrcweir };
85cdf0e10cSrcweir 
86cdf0e10cSrcweir }
87cdf0e10cSrcweir 
88cdf0e10cSrcweir #endif
89