blob: 1e7f6f7b2644c9d4a50b2616e59f22bd2d2d2bcd [file] [log] [blame]
jieluo@google.combde4a322014-08-12 21:10:30 +00001// Protocol Buffers - Google's data interchange format
2// Copyright 2008 Google Inc. All rights reserved.
Feng Xiaoe4288622014-10-01 16:26:23 -07003// https://developers.google.com/protocol-buffers/
jieluo@google.combde4a322014-08-12 21:10:30 +00004//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
8//
9// * Redistributions of source code must retain the above copyright
10// notice, this list of conditions and the following disclaimer.
11// * Redistributions in binary form must reproduce the above
12// copyright notice, this list of conditions and the following disclaimer
13// in the documentation and/or other materials provided with the
14// distribution.
15// * Neither the name of Google Inc. nor the names of its
16// contributors may be used to endorse or promote products derived from
17// this software without specific prior written permission.
18//
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31// Author: anuraag@google.com (Anuraag Agrawal)
32// Author: tibell@google.com (Johan Tibell)
33
34#ifndef GOOGLE_PROTOBUF_PYTHON_CPP_EXTENSION_DICT_H__
35#define GOOGLE_PROTOBUF_PYTHON_CPP_EXTENSION_DICT_H__
36
37#include <Python.h>
38
39#include <memory>
40#ifndef _SHARED_PTR_H
41#include <google/protobuf/stubs/shared_ptr.h>
42#endif
43
jieluo@google.combde4a322014-08-12 21:10:30 +000044namespace google {
45namespace protobuf {
46
47class Message;
48class FieldDescriptor;
49
Manjunath Kudlur3f9b4f22015-12-07 14:15:29 -080050#ifdef _SHARED_PTR_H
Jisi Liu3b3c8ab2016-03-30 11:39:59 -070051using shared_ptr;
Manjunath Kudlur96537c42015-12-09 07:40:30 -080052#else
53using internal::shared_ptr;
Manjunath Kudlur3f9b4f22015-12-07 14:15:29 -080054#endif
jieluo@google.combde4a322014-08-12 21:10:30 +000055
56namespace python {
57
58struct CMessage;
jieluo@google.combde4a322014-08-12 21:10:30 +000059
60typedef struct ExtensionDict {
61 PyObject_HEAD;
Feng Xiao6ef984a2014-11-10 17:34:54 -080062
63 // This is the top-level C++ Message object that owns the whole
64 // proto tree. Every Python container class holds a
65 // reference to it in order to keep it alive as long as there's a
66 // Python object that references any part of the tree.
jieluo@google.combde4a322014-08-12 21:10:30 +000067 shared_ptr<Message> owner;
Feng Xiao6ef984a2014-11-10 17:34:54 -080068
69 // Weak reference to parent message. Used to make sure
70 // the parent is writable when an extension field is modified.
jieluo@google.combde4a322014-08-12 21:10:30 +000071 CMessage* parent;
Feng Xiao6ef984a2014-11-10 17:34:54 -080072
73 // Pointer to the C++ Message that this ExtensionDict extends.
74 // Not owned by us.
jieluo@google.combde4a322014-08-12 21:10:30 +000075 Message* message;
Feng Xiao6ef984a2014-11-10 17:34:54 -080076
77 // A dict of child messages, indexed by Extension descriptors.
78 // Similar to CMessage::composite_fields.
jieluo@google.combde4a322014-08-12 21:10:30 +000079 PyObject* values;
80} ExtensionDict;
81
82extern PyTypeObject ExtensionDict_Type;
83
84namespace extension_dict {
85
Feng Xiao6ef984a2014-11-10 17:34:54 -080086// Builds an Extensions dict for a specific message.
87ExtensionDict* NewExtensionDict(CMessage *parent);
jieluo@google.combde4a322014-08-12 21:10:30 +000088
89// Gets the number of extension values in this ExtensionDict as a python object.
90//
91// Returns a new reference.
92PyObject* len(ExtensionDict* self);
93
94// Releases extensions referenced outside this dictionary to keep outside
95// references alive.
96//
97// Returns 0 on success, -1 on failure.
98int ReleaseExtension(ExtensionDict* self,
99 PyObject* extension,
Jisi Liuada65562015-02-25 16:39:11 -0800100 const FieldDescriptor* descriptor);
jieluo@google.combde4a322014-08-12 21:10:30 +0000101
102// Gets an extension from the dict for the given extension descriptor.
103//
104// Returns a new reference.
105PyObject* subscript(ExtensionDict* self, PyObject* key);
106
107// Assigns a value to an extension in the dict. Can only be used for singular
108// simple types.
109//
110// Returns 0 on success, -1 on failure.
111int ass_subscript(ExtensionDict* self, PyObject* key, PyObject* value);
112
113// Clears an extension from the dict. Will release the extension if there
114// is still an external reference left to it.
115//
116// Returns None on success.
117PyObject* ClearExtension(ExtensionDict* self,
118 PyObject* extension);
119
jieluo@google.combde4a322014-08-12 21:10:30 +0000120// Gets an extension from the dict given the extension name as opposed to
121// descriptor.
122//
123// Returns a new reference.
124PyObject* _FindExtensionByName(ExtensionDict* self, PyObject* name);
125
126} // namespace extension_dict
127} // namespace python
128} // namespace protobuf
129
130} // namespace google
131#endif // GOOGLE_PROTOBUF_PYTHON_CPP_EXTENSION_DICT_H__