summaryrefslogtreecommitdiff
path: root/upb/google/bridge.cc
blob: 93e5c27b449951ce99b662799033a2711bc73af3 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
//
// upb - a minimalist implementation of protocol buffers.
//
// Copyright (c) 2011-2012 Google Inc.  See LICENSE for details.
// Author: Josh Haberman <jhaberman@gmail.com>
//
// IMPORTANT NOTE!  This file is compiled TWICE, once with UPB_GOOGLE3 defined
// and once without!  This allows us to provide functionality against proto2
// and protobuf opensource both in a single binary without the two conflicting.
// However we must be careful not to violate the ODR.

#include "upb/google/bridge.h"

#include <map>
#include <string>
#include "upb/def.h"
#include "upb/google/proto1.h"
#include "upb/google/proto2.h"
#include "upb/handlers.h"

namespace upb {
namespace proto2_bridge_google3 { class Defs; }
namespace proto2_bridge_opensource { class Defs; }
}  // namespace upb

#ifdef UPB_GOOGLE3
#include "net/proto2/public/descriptor.h"
#include "net/proto2/public/message.h"
#include "net/proto2/proto/descriptor.pb.h"
namespace goog = ::proto2;
namespace me = ::upb::proto2_bridge_google3;
#else
#include "google/protobuf/descriptor.h"
#include "google/protobuf/message.h"
#include "google/protobuf/descriptor.pb.h"
namespace goog = ::google::protobuf;
namespace me = ::upb::proto2_bridge_opensource;
#endif

class me::Defs {
 public:
  void OnMessage(Handlers* h) {
    const upb::MessageDef* md = h->message_def();
    const goog::Message& m = *message_map_[md];
    const goog::Descriptor* d = m.GetDescriptor();
    for (upb::MessageDef::ConstIterator i(md); !i.Done(); i.Next()) {
      const upb::FieldDef* upb_f = i.field();
      const goog::FieldDescriptor* proto2_f =
          d->FindFieldByNumber(upb_f->number());
      if (!proto2_f) {
        proto2_f = d->file()->pool()->FindExtensionByNumber(d, upb_f->number());
      }
      assert(proto2_f);
      if (!upb::google::TrySetWriteHandlers(proto2_f, m, upb_f, h)
#ifdef UPB_GOOGLE3
          && !upb::google::TrySetProto1WriteHandlers(proto2_f, m, upb_f, h)
#endif
          ) {
        // Unsupported reflection class.
        //
        // Should we fall back to using the public Reflection interface in this
        // case?  It's unclear whether it's supported behavior for users to
        // create their own Reflection classes.
        assert(false);
      }
    }
  }

  static void StaticOnMessage(void* closure, upb::Handlers* handlers) {
    me::Defs* defs = static_cast<me::Defs*>(closure);
    defs->OnMessage(handlers);
  }

  void AddSymbol(const std::string& name, upb::Def* def) {
    assert(symbol_map_.find(name) == symbol_map_.end());
    symbol_map_[name] = def;
  }

  void AddMessage(const goog::Message* m, upb::MessageDef* md) {
    assert(message_map_.find(md) == message_map_.end());
    message_map_[md] = m;
    AddSymbol(m->GetDescriptor()->full_name(), md->Upcast());
  }

  upb::Def* FindSymbol(const std::string& name) {
    SymbolMap::iterator iter = symbol_map_.find(name);
    return iter != symbol_map_.end() ? iter->second : NULL;
  }

  void Flatten(std::vector<upb::Def*>* defs) {
    SymbolMap::iterator iter;
    for (iter = symbol_map_.begin(); iter != symbol_map_.end(); ++iter) {
      defs->push_back(iter->second);
    }
  }

 private:
  // Maps a new upb::MessageDef* to a corresponding proto2 Message* whose
  // derived class is of the correct type according to the message the user
  // gave us.
  typedef std::map<const upb::MessageDef*, const goog::Message*> MessageMap;
  MessageMap message_map_;

  // Maps a type name to a upb Def we have constructed to represent it.
  typedef std::map<std::string, upb::Def*> SymbolMap;
  SymbolMap symbol_map_;
};

namespace upb {
namespace google {

// For submessage fields, stores a pointer to an instance of the submessage in
// *subm (but it is *not* guaranteed to be a prototype).
FieldDef* AddFieldDef(const goog::Message& m, const goog::FieldDescriptor* f,
                      upb::MessageDef* md, const goog::Message** subm) {
  // To parse weak submessages effectively, we need to represent them in the
  // upb::Def schema even though they are not reflected in the proto2
  // descriptors (weak fields are represented as FieldDescriptor::TYPE_BYTES).
  const goog::Message* weak_prototype = NULL;
#ifdef UPB_GOOGLE3
  weak_prototype = upb::google::GetProto1WeakPrototype(m, f);
#endif

  upb::FieldDef* upb_f = upb::FieldDef::New(&upb_f);
  upb_f->set_number(f->number());
  upb_f->set_name(f->name());
  upb_f->set_label(static_cast<upb::FieldDef::Label>(f->label()));
  upb_f->set_descriptor_type(
      weak_prototype ? UPB_DESCRIPTOR_TYPE_MESSAGE :
          static_cast<upb::FieldDef::DescriptorType>(f->type()));

  if (weak_prototype) {
    upb_f->set_subdef_name(weak_prototype->GetDescriptor()->full_name());
  } else {
    switch (upb_f->type()) {
      case UPB_TYPE_INT32:
        upb_f->set_default_value(MakeValue(f->default_value_int32()));
        break;
      case UPB_TYPE_INT64:
        upb_f->set_default_value(
            MakeValue(static_cast<int64_t>(f->default_value_int64())));
        break;
      case UPB_TYPE_UINT32:
        upb_f->set_default_value(MakeValue(f->default_value_uint32()));
        break;
      case UPB_TYPE_UINT64:
        upb_f->set_default_value(
            MakeValue(static_cast<uint64_t>(f->default_value_uint64())));
        break;
      case UPB_TYPE_DOUBLE:
        upb_f->set_default_value(MakeValue(f->default_value_double()));
        break;
      case UPB_TYPE_FLOAT:
        upb_f->set_default_value(MakeValue(f->default_value_float()));
        break;
      case UPB_TYPE_BOOL:
        upb_f->set_default_value(MakeValue(f->default_value_bool()));
        break;
      case UPB_TYPE_STRING:
      case UPB_TYPE_BYTES:
        upb_f->set_default_string(f->default_value_string());
        break;
      case UPB_TYPE_MESSAGE:
        upb_f->set_subdef_name(f->message_type()->full_name());
        break;
      case UPB_TYPE_ENUM:
        // We set the enum default numerically.
        upb_f->set_default_value(
            MakeValue(static_cast<int32_t>(f->default_value_enum()->number())));
        upb_f->set_subdef_name(f->enum_type()->full_name());
        break;
    }
  }

  bool ok = md->AddField(upb_f, &upb_f);
  UPB_ASSERT_VAR(ok, ok);

  if (weak_prototype) {
    *subm = weak_prototype;
  } else if (f->cpp_type() == goog::FieldDescriptor::CPPTYPE_MESSAGE) {
    *subm = upb::google::GetFieldPrototype(m, f);
#ifdef UPB_GOOGLE3
    if (!*subm) *subm = upb::google::GetProto1FieldPrototype(m, f);
#endif
    assert(*subm);
  }

  return upb_f;
}

upb::EnumDef* NewEnumDef(const goog::EnumDescriptor* desc, const void* owner) {
  upb::EnumDef* e = upb::EnumDef::New(owner);
  e->set_full_name(desc->full_name());
  for (int i = 0; i < desc->value_count(); i++) {
    const goog::EnumValueDescriptor* val = desc->value(i);
    bool success = e->AddValue(val->name(), val->number(), NULL);
    UPB_ASSERT_VAR(success, success);
  }
  return e;
}

static upb::MessageDef* NewMessageDef(const goog::Message& m, const void* owner,
                                      me::Defs* defs) {
  upb::MessageDef* md = upb::MessageDef::New(owner);
  const goog::Descriptor* d = m.GetDescriptor();
  md->set_full_name(m.GetDescriptor()->full_name());

  // Must do this before processing submessages to prevent infinite recursion.
  defs->AddMessage(&m, md);

  std::vector<const goog::FieldDescriptor*> fields;
  d->file()->pool()->FindAllExtensions(d, &fields);
  for (int i = 0; i < d->field_count(); i++) {
    fields.push_back(d->field(i));
  }

  for (int i = 0; i < fields.size(); i++) {
    const goog::FieldDescriptor* proto2_f = fields[i];
    assert(proto2_f);
#ifdef UPB_GOOGLE3
    // Skip lazy fields for now since we can't properly handle them.
    if (proto2_f->options().lazy()) continue;
#endif
    const goog::Message* subm_prototype;
    upb::FieldDef* f = AddFieldDef(m, proto2_f, md, &subm_prototype);

    if (!f->HasSubDef()) continue;

    upb::Def* subdef = defs->FindSymbol(f->subdef_name());
    if (!subdef) {
      if (f->type() == UPB_TYPE_ENUM) {
        subdef = NewEnumDef(proto2_f->enum_type(), owner)->Upcast();
        defs->AddSymbol(subdef->full_name(), subdef);
      } else {
        assert(f->IsSubMessage());
        assert(subm_prototype);
        subdef = NewMessageDef(*subm_prototype, owner, defs)->Upcast();
      }
    }
    f->set_subdef(subdef);
  }
  return md;
}

const upb::Handlers* NewWriteHandlers(const goog::Message& m,
                                      const void* owner) {
  me::Defs defs;
  const upb::MessageDef* md = NewMessageDef(m, owner, &defs);

  std::vector<upb::Def*> defs_vec;
  defs.Flatten(&defs_vec);
  Status status;
  bool success = Def::Freeze(defs_vec, &status);
  UPB_ASSERT_VAR(success, success);

  const upb::Handlers* ret = upb::Handlers::NewFrozen(
      md, NULL, owner, me::Defs::StaticOnMessage, &defs);

  // Unref all defs, since they're now ref'd by the handlers.
  for (int i = 0; i < static_cast<int>(defs_vec.size()); i++) {
    defs_vec[i]->Unref(owner);
  }

  return ret;
}

}  // namespace google
}  // namespace upb
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback