Skip to content

Commit

Permalink
Update Cppyy::GetScope to handle nested namespaces and templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Vipul-Cariappa committed Dec 3, 2024
1 parent bfea6ba commit ae8c51a
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions clingwrapper/src/clingwrapper.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -565,13 +565,31 @@ Cppyy::TCppScope_t Cppyy::GetUnderlyingScope(TCppScope_t scope)
Cppyy::TCppScope_t Cppyy::GetScope(const std::string& name,
TCppScope_t parent_scope)
{
#ifndef NDEBUG
if (name.find("::") != std::string::npos)
throw std::runtime_error("Calling Cppyy::GetScope with qualified name '"
+ name + "'\n");
#endif // NDEBUG
if (Cppyy::TCppScope_t scope = Cpp::GetScope(name, parent_scope))
return scope;
if (!parent_scope || parent_scope == Cpp::GetGlobalScope())
if (Cppyy::TCppScope_t scope = Cpp::GetScopeFromCompleteName(name))
return scope;

return Cpp::GetScope(name, parent_scope);
if (name.find('<') != std::string::npos) {
// Templated Type; May need instantiation
size_t start = name.find('<');
size_t end = name.rfind('>');
std::string params = name.substr(start + 1, end - start - 1);

std::string pure_name = name.substr(0, start);
Cppyy::TCppScope_t scope = Cpp::GetScope(pure_name, parent_scope);
if (!scope && (!parent_scope || parent_scope == Cpp::GetGlobalScope()))
scope = Cpp::GetScopeFromCompleteName(pure_name);

if (Cppyy::IsTemplate(scope)) {
std::vector<Cpp::TemplateArgInfo> templ_params;
if (!Cppyy::AppendTypesSlow(params, templ_params))
return Cpp::InstantiateTemplate(scope, templ_params.data(),
templ_params.size());
}
}
return nullptr;
}

Cppyy::TCppScope_t Cppyy::GetFullScope(const std::string& name)
Expand Down

0 comments on commit ae8c51a

Please sign in to comment.