blob: f100ff2af8dd725a93b0947fe32adcaef1ddfe11 [file] [edit]
// Protocol Buffers - Google's data interchange format
// Copyright 2023 Google LLC. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#ifndef PYUPB_PROTOBUF_H__
#define PYUPB_PROTOBUF_H__
// clang-format off
#include "Python.h"
// clang-format on
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include "python/descriptor.h"
#include "python/free_threading/weak_map.h"
#include "upb/mem/arena.h"
#include "upb/reflection/def.h"
#define PYUPB_PROTOBUF_PUBLIC_PACKAGE "google.protobuf"
#define PYUPB_PROTOBUF_INTERNAL_PACKAGE "google.protobuf.internal"
#define PYUPB_DESCRIPTOR_PROTO_PACKAGE "google.protobuf"
#define PYUPB_MODULE_NAME "google._upb._message"
#define PYUPB_DESCRIPTOR_MODULE "google.protobuf.descriptor_pb2"
#define PYUPB_RETURN_OOM return PyErr_SetNone(PyExc_MemoryError), NULL
// -----------------------------------------------------------------------------
// ModuleState
// -----------------------------------------------------------------------------
// We store all "global" state in this struct instead of using (C) global
// variables. This makes this extension compatible with sub-interpreters.
typedef struct {
// From descriptor.c
PyTypeObject* descriptor_types[kPyUpb_Descriptor_Count];
// From descriptor_containers.c
PyTypeObject* by_name_map_type;
PyTypeObject* by_name_iterator_type;
PyTypeObject* by_number_map_type;
PyTypeObject* by_number_iterator_type;
PyTypeObject* generic_sequence_type;
// From descriptor_pool.c
PyObject* default_pool;
PyTypeObject* descriptor_pool_type;
upb_DefPool* c_descriptor_symtab;
PyUpb_WeakMap* obj_cache;
// From extension_dict.c
PyTypeObject* extension_dict_type;
PyTypeObject* extension_iterator_type;
// From map.c
PyTypeObject* map_iterator_type;
PyTypeObject* message_map_container_type;
PyTypeObject* scalar_map_container_type;
// From message.c
PyObject* decode_error_class;
PyObject* descriptor_string;
PyObject* encode_error_class;
PyObject* enum_type_wrapper_class;
PyObject* message_class;
PyObject* frozen_instance_error_class;
PyTypeObject* cmessage_type;
PyTypeObject* message_meta_type;
PyObject* listfields_item_key;
// From protobuf.c
bool allow_oversize_protos;
PyObject* wkt_bases;
PyTypeObject* arena_type;
// From repeated.c
PyTypeObject* repeated_composite_container_type;
PyTypeObject* repeated_scalar_container_type;
// From unknown_fields.c
PyTypeObject* unknown_fields_type;
PyObject* unknown_field_type;
} PyUpb_ModuleState;
// Returns the global state object from the current interpreter. The current
// interpreter is looked up from thread-local state.
PyUpb_ModuleState* PyUpb_ModuleState_Get(void);
PyUpb_ModuleState* PyUpb_ModuleState_GetFromModule(PyObject* module);
// Returns NULL if module state is not yet available (during startup).
// Any use of the module state during startup needs to be passed explicitly.
PyUpb_ModuleState* PyUpb_ModuleState_MaybeGet(void);
// Returns:
// from google.protobuf.internal.well_known_types import WKTBASES
//
// This has to be imported lazily rather than at module load time, because
// otherwise it would cause a circular import.
PyObject* PyUpb_GetWktBases(PyUpb_ModuleState* state);
// -----------------------------------------------------------------------------
// Arena
// -----------------------------------------------------------------------------
PyObject* PyUpb_Arena_New(PyObject* pool);
PyObject* PyUpb_Arena_GetPool(PyObject* arena);
upb_Arena* PyUpb_Arena_Get(PyObject* arena);
bool PyUpb_Arena_IsFrozen(PyObject* arena);
void PyUpb_Arena_SetFrozen(PyObject* arena, bool frozen);
bool PyUpb_Arena_CacheAdd(PyObject* arena, const void* key, PyObject** py_obj);
PyObject* PyUpb_Arena_CacheGet(PyObject* arena, const void* key);
bool PyUpb_Arena_CacheEraseIfEqual(PyObject* arena, const void* key,
PyObject* obj);
// -----------------------------------------------------------------------------
// Utilities
// -----------------------------------------------------------------------------
PyTypeObject* AddObject(PyObject* m, const char* name, PyType_Spec* spec);
// Creates a Python type from `spec` and adds it to the given module `m`.
PyTypeObject* PyUpb_AddClass(PyObject* m, PyType_Spec* spec);
// Like PyUpb_AddClass(), but allows you to specify a tuple of base classes
// in `bases`.
PyTypeObject* PyUpb_AddClassWithBases(PyObject* m, PyType_Spec* spec,
PyObject* bases);
// Like PyUpb_AddClass(), but allows you to specify a tuple of base classes in
// `bases` to register as a "virtual subclass" with mixin methods.
PyTypeObject* PyUpb_AddClassWithRegister(PyObject* m, PyType_Spec* spec,
PyObject* virtual_base,
const char** methods);
// A function that implements the tp_new slot for types that we do not allow
// users to create directly. This will immediately fail with an error message.
PyObject* PyUpb_Forbidden_New(PyObject* cls, PyObject* args, PyObject* kwds);
// Our standard dealloc func. It follows the guidance defined in:
// https://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_dealloc
// It requires that the type is a heap type, which all of our types are.
static inline void PyUpb_Dealloc(void* self) {
PyTypeObject* tp = Py_TYPE(self);
assert(PyType_GetFlags(tp) & Py_TPFLAGS_HEAPTYPE);
freefunc tp_free = (freefunc)PyType_GetSlot(tp, Py_tp_free);
if (tp_free) {
tp_free(self);
} else {
PyObject_Free(self);
}
Py_DECREF(tp);
}
// Equivalent to the Py_NewRef() function introduced in Python 3.10. If/when we
// drop support for Python <3.10, we can remove this function and replace all
// callers with Py_NewRef().
static inline PyObject* PyUpb_NewRef(PyObject* obj) {
Py_INCREF(obj);
return obj;
}
const char* PyUpb_GetStrData(PyObject* obj);
const char* PyUpb_VerifyStrData(PyObject* obj);
// For an expression like:
// foo[index]
//
// Converts `index` to an effective i/count/step, for a repeated field
// or descriptor sequence of size 'size'.
bool PyUpb_IndexToRange(PyObject* index, Py_ssize_t size, Py_ssize_t* i,
Py_ssize_t* count, Py_ssize_t* step);
// Sets a Python FrozenInstanceError with the default error message
// ("Message is immutable.") and returns NULL.
PyObject* PyUpb_SetFrozenError(void);
// Sets a Python FrozenInstanceError with the given custom message and returns
// NULL.
PyObject* PyUpb_SetFrozenErrorWithMsg(const char* msg);
// Emits a DeprecationWarning when mutating a frozen message or container in
// OSS.
int PyUpb_WarnFrozen(void);
bool PyUpb_CheckFrozen(bool is_frozen, const char* error_msg);
#endif // PYUPB_PROTOBUF_H__