// // Copyright 2016 Pixar // // Licensed under the Apache License, Version 2.0 (the "Apache License") // with the following modification; you may not use this file except in // compliance with the Apache License and the following modification to it: // Section 6. Trademarks. is deleted and replaced with: // // 6. Trademarks. This License does not grant permission to use the trade // names, trademarks, service marks, or product names of the Licensor // and its affiliates, except as required to comply with Section 4(c) of // the License and to reproduce the content of the NOTICE file. // // You may obtain a copy of the Apache License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the Apache License with the above modification is // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the Apache License for the specific // language governing permissions and limitations under the Apache License. // #ifndef PXR_BASE_TF_PY_SINGLETON_H #define PXR_BASE_TF_PY_SINGLETON_H #include "pxr/pxr.h" #include "pxr/base/tf/api.h" #include "pxr/base/tf/pyPtrHelpers.h" #include "pxr/base/tf/pyUtils.h" #include "pxr/base/tf/singleton.h" #include "pxr/base/tf/weakPtr.h" #include #include #include #include #include #include #include PXR_NAMESPACE_OPEN_SCOPE namespace Tf_PySingleton { namespace bp = boost::python; TF_API bp::object _DummyInit(bp::tuple const & /* args */, bp::dict const & /* kw */); template TfWeakPtr GetWeakPtr(T &t) { return TfCreateWeakPtr(&t); } template TfWeakPtr GetWeakPtr(T const &t) { // cast away constness for python... return TfConst_cast >(TfCreateWeakPtr(&t)); } template TfWeakPtr GetWeakPtr(TfWeakPtr const &t) { return t; } template PtrType _GetSingletonWeakPtr(bp::object const & /* classObj */) { typedef typename PtrType::DataType Singleton; return GetWeakPtr(Singleton::GetInstance()); } TF_API std::string _Repr(bp::object const &self, std::string const &prefix); struct Visitor : bp::def_visitor { explicit Visitor(std::string const &reprPrefix = std::string()) : _reprPrefix(reprPrefix) {} friend class bp::def_visitor_access; template void visit(CLS &c) const { typedef typename CLS::metadata::held_type PtrType; // Singleton implies WeakPtr. c.def(TfPyWeakPtr()); // Wrap __new__ to return a weak pointer to the singleton instance. c.def("__new__", _GetSingletonWeakPtr).staticmethod("__new__"); // Make __init__ do nothing. c.def("__init__", bp::raw_function(_DummyInit)); // If they supplied a repr prefix, provide a repr implementation. if (!_reprPrefix.empty()) c.def("__repr__", make_function(std::bind( _Repr, std::placeholders::_1, _reprPrefix), bp::default_call_policies(), boost::mpl::vector2())); } private: std::string _reprPrefix; }; } TF_API Tf_PySingleton::Visitor TfPySingleton(); TF_API Tf_PySingleton::Visitor TfPySingleton(std::string const &reprPrefix); PXR_NAMESPACE_CLOSE_SCOPE #endif // PXR_BASE_TF_PY_SINGLETON_H