blob: 8b5709735cdf33df535c67eaf9f82e4feddf0514 [file]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_DEVELOPER_FFX_LIB_FUCHSIA_CONTROLLER_CPP_FUCHSIA_CONTROLLER_INTERNAL_MOD_H_
#define SRC_DEVELOPER_FFX_LIB_FUCHSIA_CONTROLLER_CPP_FUCHSIA_CONTROLLER_INTERNAL_MOD_H_
#include <Python.h>
#include "fuchsia_controller.h"
namespace mod {
// Definition of the module-wide state.
using FuchsiaControllerState = struct {
ffx_lib_context_t *ctx;
};
FuchsiaControllerState *get_module_state();
void set_python_exception(fc_status_t err);
inline int GenericTypeInit(PyTypeObject **type, PyType_Spec *spec) {
assert(type != nullptr);
*type = reinterpret_cast<PyTypeObject *>(PyType_FromSpec(spec));
if (*type == nullptr) {
return -1;
}
if (PyType_Ready(*type) < 0) {
return -1;
}
return 1;
}
} // namespace mod
#endif // SRC_DEVELOPER_FFX_LIB_FUCHSIA_CONTROLLER_CPP_FUCHSIA_CONTROLLER_INTERNAL_MOD_H_