summaryrefslogtreecommitdiff
path: root/upb/bindings/googlepb/proto1.int.h
blob: 64ebb2f19d9d9b260bde943006d60c93bd4e97b3 (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
//
// upb - a minimalist implementation of protocol buffers.
//
// Copyright (c) 2011-2012 Google Inc.  See LICENSE for details.
// Author: Josh Haberman <jhaberman@gmail.com>
//
// Support for registering field handlers that can write into a legacy proto1
// message.  This functionality is only needed inside Google.
//
// This is an internal-only interface.

#ifndef UPB_GOOGLE_PROTO1_H_
#define UPB_GOOGLE_PROTO1_H_

namespace proto2 {
class FieldDescriptor;
class Message;
}

namespace upb {
class FieldDef;
class Handlers;
}

namespace upb {
namespace googlepb {

// Sets field handlers in the given Handlers object for writing to a single
// field (as described by "proto2_f" and "upb_f") into a message constructed
// by the same factory as "prototype."  Returns true if this was successful
// (this will fail if "prototype" is not a proto1 message, or if we can't
// handle it for some reason).
bool TrySetProto1WriteHandlers(const proto2::FieldDescriptor* proto2_f,
                               const proto2::Message& prototype,
                               const upb::FieldDef* upb_f, upb::Handlers* h);

// Returns a prototype for the given this (possibly-weak) field.  Returns NULL
// if this is not a submessage field of any kind (weak or no).
const proto2::Message* GetProto1FieldPrototype(
    const proto2::Message& m, const proto2::FieldDescriptor* f);

}  // namespace googlepb
}  // namespace upb

#endif  // UPB_GOOGLE_PROTO1_H_
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback