// // 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. // #include "pxr/pxr.h" #include "pxr/base/tf/pyArg.h" #include "pxr/base/tf/pyUtils.h" #include "pxr/base/tf/stringUtils.h" #include #include #include #include using std::string; using std::vector; using namespace boost::python; PXR_NAMESPACE_OPEN_SCOPE static bool _ArgumentIsNamed(const std::string& name, const TfPyArg& arg) { return arg.GetName() == name; } std::pair TfPyProcessOptionalArgs( const tuple& args, const dict& kwargs, const TfPyArgs& expectedArgs, bool allowExtraArgs) { std::pair rval; const unsigned int numArgs = static_cast(len(args)); const unsigned int numExpectedArgs = static_cast(expectedArgs.size()); if (!allowExtraArgs) { if (numArgs > numExpectedArgs) { TfPyThrowTypeError("Too many arguments for function"); } const list keys = kwargs.keys(); typedef stl_input_iterator KeyIterator; for (KeyIterator it(keys), it_end; it != it_end; ++it) { if (std::find_if(expectedArgs.begin(), expectedArgs.end(), std::bind(_ArgumentIsNamed, *it, std::placeholders::_1)) == expectedArgs.end()) { TfPyThrowTypeError("Unexpected keyword argument '%s'"); } } } rval.second = kwargs; for (unsigned int i = 0; i < std::min(numArgs, numExpectedArgs); ++i) { const string& argName = expectedArgs[i].GetName(); if (rval.second.has_key(argName)) { TfPyThrowTypeError( TfStringPrintf("Multiple values for keyword argument '%s'", argName.c_str())); } rval.second[argName] = args[i]; } if (numArgs > numExpectedArgs) { rval.first = tuple(args[slice(numExpectedArgs, numArgs)]); } return rval; } static void _AddArgAndTypeDocStrings( const TfPyArg& arg, vector* argStrs, vector* typeStrs) { argStrs->push_back(arg.GetName()); if (!arg.GetDefaultValueDoc().empty()) { argStrs->back() += TfStringPrintf(" = %s", arg.GetDefaultValueDoc().c_str()); } typeStrs->push_back( TfStringPrintf("%s : %s", arg.GetName().c_str(), arg.GetTypeDoc().c_str())); } string TfPyCreateFunctionDocString( const string& functionName, const TfPyArgs& requiredArgs, const TfPyArgs& optionalArgs, const string& description) { string rval = functionName + "("; vector argStrs; vector typeStrs; for (size_t i = 0; i < requiredArgs.size(); ++i) { _AddArgAndTypeDocStrings(requiredArgs[i], &argStrs, &typeStrs); } for (size_t i = 0; i < optionalArgs.size(); ++i) { _AddArgAndTypeDocStrings(optionalArgs[i], &argStrs, &typeStrs); } rval += TfStringJoin(argStrs.begin(), argStrs.end(), ", "); rval += ")"; if (!typeStrs.empty()) { rval += "\n"; rval += TfStringJoin(typeStrs.begin(), typeStrs.end(), "\n"); } if (!description.empty()) { rval += "\n\n"; rval += description; } return rval; } PXR_NAMESPACE_CLOSE_SCOPE