Loading...
Searching...
No Matches
pyStaticTokens.h
Go to the documentation of this file.
1//
2// Copyright 2016 Pixar
3//
4// Licensed under the Apache License, Version 2.0 (the "Apache License")
5// with the following modification; you may not use this file except in
6// compliance with the Apache License and the following modification to it:
7// Section 6. Trademarks. is deleted and replaced with:
8//
9// 6. Trademarks. This License does not grant permission to use the trade
10// names, trademarks, service marks, or product names of the Licensor
11// and its affiliates, except as required to comply with Section 4(c) of
12// the License and to reproduce the content of the NOTICE file.
13//
14// You may obtain a copy of the Apache License at
15//
16// http://www.apache.org/licenses/LICENSE-2.0
17//
18// Unless required by applicable law or agreed to in writing, software
19// distributed under the Apache License with the above modification is
20// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21// KIND, either express or implied. See the Apache License for the specific
22// language governing permissions and limitations under the Apache License.
23//
24
25#ifndef PXR_BASE_TF_PY_STATIC_TOKENS_H
26#define PXR_BASE_TF_PY_STATIC_TOKENS_H
27
29
30#include "pxr/pxr.h"
31
32#include <locale>
33
35#include "pxr/base/tf/preprocessorUtilsLite.h"
36
37#include <boost/python/class.hpp>
38#include <boost/python/scope.hpp>
39
40PXR_NAMESPACE_OPEN_SCOPE
41
47#define TF_PY_WRAP_PUBLIC_TOKENS(name, key, seq) \
48 boost::python::class_<_TF_TOKENS_STRUCT_NAME(key), boost::noncopyable>( \
49 name, boost::python::no_init) \
50 _TF_PY_TOKENS_WRAP_SEQ(key, seq)
51
57#define TF_PY_WRAP_PUBLIC_TOKENS_IN_CURRENT_SCOPE(key, seq) \
58 _TF_PY_TOKENS_WRAP_ATTR_SEQ(key, seq)
59
60// Helper to return a static token as a string. We wrap tokens as Python
61// strings and for some reason simply wrapping the token using def_readonly
62// bypasses to-Python conversion, leading to the error that there's no
63// Python type for the C++ TfToken type. So we wrap this functor instead.
64class _TfPyWrapStaticToken {
65public:
66 _TfPyWrapStaticToken(const TfToken* token) : _token(token) { }
67
68 std::string operator()() const
69 {
70 return _token->GetString();
71 }
72
73private:
74 const TfToken* _token;
75};
76
77// Private macros to add a single data member.
78#define _TF_PY_TOKENS_WRAP_ATTR_MEMBER(r, key, name) \
79 boost::python::scope().attr( \
80 TF_PP_STRINGIZE(name)) = key->name.GetString();
81
82#define _TF_PY_TOKENS_WRAP_MEMBER(r, key, name) \
83 .add_static_property(TF_PP_STRINGIZE(name), \
84 boost::python::make_function(_TfPyWrapStaticToken((&key->name)), \
85 boost::python::return_value_policy< \
86 boost::python::return_by_value>(), \
87 boost::mpl::vector1<std::string>()))
88
89// Private macros to wrap a single element in a sequence.
90#define _TF_PY_TOKENS_WRAP_ELEMENT(key, elem) \
91 _TF_PY_TOKENS_WRAP_MEMBER(r, key, _TF_PY_TOKEN_GET_ELEM(elem))
92
93#define _TF_PY_TOKENS_WRAP_ATTR_ELEMENT(key, elem) \
94 _TF_PY_TOKENS_WRAP_ATTR_MEMBER(r, key, _TF_PY_TOKEN_GET_ELEM(elem))
95
96#define _TF_PY_TOKEN_GET_ELEM(elem) \
97 _TF_PP_IFF(TF_PP_IS_TUPLE(elem), \
98 TF_PP_TUPLE_ELEM(0, elem), elem)
99
100// Private macros to wrap a sequence.
101#define _TF_PY_TOKENS_WRAP_SEQ(key, seq) \
102 TF_PP_SEQ_FOR_EACH(_TF_PY_TOKENS_WRAP_ELEMENT, key, seq)
103
104#define _TF_PY_TOKENS_WRAP_ATTR_SEQ(key, seq) \
105 TF_PP_SEQ_FOR_EACH(_TF_PY_TOKENS_WRAP_ATTR_ELEMENT, key, seq)
106
107PXR_NAMESPACE_CLOSE_SCOPE
108
109#endif // PXR_BASE_TF_PY_STATIC_TOKENS_H
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:88
This file defines some macros that are useful for declaring and using static TfTokens.