aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/serializer/substitution-map.hxx
blob: 79fb1cceea6ba310e50a8b1024406300e0cb0f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// file      : xsde/cxx/serializer/substitution-map.hxx
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSDE_CXX_SERIALIZER_SUBSTITUTION_MAP_HXX
#define XSDE_CXX_SERIALIZER_SUBSTITUTION_MAP_HXX

#include <stddef.h> // size_t

#include <xsde/cxx/config.hxx>
#include <xsde/cxx/ro-string.hxx>
#include <xsde/cxx/hashmap.hxx>

namespace xsde
{
  namespace cxx
  {
    namespace serializer
    {
      struct substitution_map: hashmap
      {
        ~substitution_map ();

        substitution_map (size_t buckets);

        void
        insert (const char* root,
                const char* member_ns,
                const char* member_name,
                const char* member_type);

        typedef bool (*callback_func) (
          const char* type,
          const void* obj,
          const char*& ns,
          const char*& name);

        void
        callback (callback_func);

        // Check whether there is a substitution available for this
        // root element with the specified type. If so, return true
        // and override namespace and name (ns is 0 if there is no
        // namespace). The obj argument is an opaque pointer to the
        // instance being serialized or 0 if there is none.
        //
        bool
        check (const char*& ns,
               const char*& name,
               const char* type,
               const void* obj) const;

      private:
        bool
        check_ (const char*& ns,
                const char*& name,
                const char* type,
                const void* obj,
                bool top) const;

      private:
        struct value
        {
          const char* ns_;
          const char* name_;
        };

      private:
        callback_func callback_;
      };


      // Translation unit initializer.
      //
      struct substitution_map_init
      {
        static substitution_map* map;
        static size_t count;

        substitution_map_init ();
        ~substitution_map_init ();
      };

      substitution_map&
      substitution_map_instance ();

      // Map entry initializer.
      //
      struct substitution_map_entry
      {
        substitution_map_entry (const char* root,
                                const char* member_ns,
                                const char* member_name,
                                const char* member_type);
      };
    }
  }
}

#include <xsde/cxx/serializer/substitution-map.ixx>

#endif  // XSDE_CXX_SERIALIZER_SUBSTITUTION_MAP_HXX