IWORKValueContext.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * This file is part of the libetonyek 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 
10 #ifndef IWORKVALUECONTEXT_H_INCLUDED
11 #define IWORKVALUECONTEXT_H_INCLUDED
12 
13 #include <boost/optional.hpp>
14 
15 #include "IWORKXMLContextBase.h"
16 
17 namespace libetonyek
18 {
19 
20 template<typename Type, class NestedParser, unsigned Id>
22 {
23 public:
24  IWORKValueContext(IWORKXMLParserState &state, boost::optional<Type> &value)
26  , m_value()
27  , m_optional(value)
28  , m_direct(0)
29  , m_isSet(nullptr)
30  {
31  }
32 
33  IWORKValueContext(IWORKXMLParserState &state, Type &value, bool *isSet = nullptr)
35  , m_value()
37  , m_direct(&value)
38  , m_isSet(isSet)
39  {
40  }
41 
42 protected:
43  void set(const Type &value)
44  {
45  m_value = value;
46  }
47 
48  IWORKXMLContextPtr_t element(const int name) override
49  {
50  if (name == Id)
51  return makeContext<NestedParser>(getState(), m_value);
52  return IWORKXMLContextPtr_t();
53  }
54 
55  void endOfElement() override
56  {
57  if (m_value)
58  {
59  if (m_direct)
60  {
61  *m_direct = get(m_value);
62  if (m_isSet)
63  *m_isSet |= true;
64  }
65  else
66  {
68  }
69  }
70  }
71 
72 private:
73  boost::optional<Type> m_value;
74  boost::optional<Type> &m_optional;
75  Type *const m_direct;
76  bool *const m_isSet;
77 };
78 
79 }
80 
81 #endif // IWORKVALUECONTEXT_H_INCLUDED
82 
83 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition: IWORKBezierElement.cpp:18
Type *const m_direct
Definition: IWORKValueContext.h:75
std::shared_ptr< IWORKXMLContext > IWORKXMLContextPtr_t
Definition: IWORKXMLContext.h:18
IWORKXMLContextPtr_t element(const int name) override
Definition: IWORKValueContext.h:48
boost::optional< Type > & m_optional
Definition: IWORKValueContext.h:74
State & getState()
Definition: IWORKXMLContextBase.h:43
void endOfElement() override
Definition: IWORKValueContext.h:55
Definition: IWORKValueContext.h:21
const char * name
Definition: IWORKToken.cpp:43
IWORKValueContext(IWORKXMLParserState &state, Type &value, bool *isSet=nullptr)
Definition: IWORKValueContext.h:33
Definition: IWORKXMLContextBase.h:27
Definition: IWORKXMLParserState.h:30
boost::optional< Type > m_value
Definition: IWORKValueContext.h:73
IWORKValueContext(IWORKXMLParserState &state, boost::optional< Type > &value)
Definition: IWORKValueContext.h:24
bool *const m_isSet
Definition: IWORKValueContext.h:76

Generated for libetonyek by doxygen 1.8.13