CMS 3D CMS Logo

FriendlyName.cc
Go to the documentation of this file.
1 /*
2  * friendlyName.cpp
3  * CMSSW
4  *
5  * Created by Chris Jones on 2/24/06.
6  *
7  */
8 #include <string>
9 #include <boost/regex.hpp>
10 #include <iostream>
11 #include "tbb/concurrent_unordered_map.h"
12 
13 //NOTE: This should probably be rewritten so that we break the class name into a tree where the template arguments are the node. On the way down the tree
14 // we look for '<' or ',' and on the way up (caused by finding a '>') we can apply the transformation to the output string based on the class name for the
15 // templated class. Up front we'd register a class name to a transformation function (which would probably take a std::vector<std::string> which holds
16 // the results of the node transformations)
17 
18 namespace edm {
19  namespace friendlyname {
20  static boost::regex const reBeginSpace("^ +");
21  static boost::regex const reEndSpace(" +$");
22  static boost::regex const reAllSpaces(" +");
23  static boost::regex const reColons("::");
24  static boost::regex const reComma(",");
25  static boost::regex const reTemplateArgs("[^<]*<(.*)>$");
26  static boost::regex const reTemplateClass("([^<>,]+<[^<>]*>)");
27  static std::string const emptyString("");
28 
30  return boost::regex_replace(iIn,reColons,emptyString,boost::format_perl);
31 
32  }
33 
35  return boost::regex_replace(boost::regex_replace(iIn,reBeginSpace,emptyString),
37  }
38 
40  return boost::regex_replace(iIn, reAllSpaces,emptyString);
41  }
42  static boost::regex const reWrapper("edm::Wrapper<(.*)>");
43  static boost::regex const reString("std::basic_string<char>");
44  static boost::regex const reString2("std::string");
45  static boost::regex const reString3("std::basic_string<char,std::char_traits<char> >");
46  //The c++11 abi for gcc internally uses a different namespace for standard classes
47  static boost::regex const reCXX11("std::__cxx11::");
48  static boost::regex const reSorted("edm::SortedCollection<(.*), *edm::StrictWeakOrdering<\\1 *> >");
49  static boost::regex const reclangabi("std::__1::");
50  static boost::regex const reULongLong("ULong64_t");
51  static boost::regex const reLongLong("Long64_t");
52  static boost::regex const reUnsigned("unsigned ");
53  static boost::regex const reLong("long ");
54  static boost::regex const reVector("std::vector");
55  static boost::regex const reSharedPtr("std::shared_ptr");
56  static boost::regex const reUniquePtr("std::unique_ptr");
57  static boost::regex const reAIKR(", *edm::helper::AssociationIdenticalKeyReference"); //this is a default so can replaced with empty
58  //force first argument to also be the argument to edm::ClonePolicy so that if OwnVector is within
59  // a template it will not eat all the remaining '>'s
60  static boost::regex const reOwnVector("edm::OwnVector<(.*), *edm::ClonePolicy<\\1 *> >");
61 
62  //NOTE: the '?' means make the smallest match. This may lead to problems where the template arguments themselves have commas
63  // but we are using it in the cases where edm::AssociationMap appears multiple times in template arguments
64  static boost::regex const reOneToOne("edm::AssociationMap< *edm::OneToOne<(.*?),(.*?), *u[a-z]*> >");
65  static boost::regex const reOneToMany("edm::AssociationMap< *edm::OneToMany<(.*?),(.*?), *u[a-z]*> >");
66  static boost::regex const reOneToValue("edm::AssociationMap< *edm::OneToValue<(.*?),(.*?), *u[a-z]*> >");
67  static boost::regex const reOneToManyWithQuality("edm::AssociationMap<edm::OneToManyWithQuality<(.*?), *(.*?), *(.*?), *u[a-z]*> >");
68  static boost::regex const reToVector("edm::AssociationVector<(.*), *(.*), *edm::Ref.*,.*>");
69  //NOTE: if the item within a clone policy is a template, this substitution will probably fail
70  static boost::regex const reToRangeMap("edm::RangeMap< *(.*), *(.*), *edm::ClonePolicy<([^>]*)> >");
71  //NOTE: If container is a template with one argument which is its 'type' then can simplify name
72  static boost::regex const reToRefs1("edm::RefVector< *(.*)< *(.*) *>, *\\2 *, *edm::refhelper::FindUsingAdvance< *\\1< *\\2 *> *, *\\2 *> *>");
73  static boost::regex const reToRefs2("edm::RefVector< *(.*) *, *(.*) *, *edm::refhelper::FindUsingAdvance< *\\1, *\\2 *> *>");
74  static boost::regex const reToRefsAssoc("edm::RefVector< *Association(.*) *, *edm::helper(.*), *Association(.*)::Find>");
75 
76 
78  using boost::regex_replace;
79  using boost::regex;
80  std::string name = regex_replace(iIn, reWrapper, "$1");
81  name = regex_replace(name,reAIKR,"");
82  name = regex_replace(name,reclangabi,"std::");
83  name = regex_replace(name,reCXX11,"std::");
84  name = regex_replace(name,reString,"String");
85  name = regex_replace(name,reString2,"String");
86  name = regex_replace(name,reString3,"String");
87  name = regex_replace(name,reSorted,"sSorted<$1>");
88  name = regex_replace(name,reULongLong,"ull");
89  name = regex_replace(name,reLongLong,"ll");
90  name = regex_replace(name,reUnsigned,"u");
91  name = regex_replace(name,reLong,"l");
92  name = regex_replace(name,reVector,"s");
93  name = regex_replace(name,reSharedPtr,"SharedPtr");
94  name = regex_replace(name,reUniquePtr,"UniquePtr");
95  name = regex_replace(name,reOwnVector,"sOwned<$1>");
96  name = regex_replace(name,reToVector,"AssociationVector<$1,To,$2>");
97  name = regex_replace(name,reOneToOne,"Association<$1,ToOne,$2>");
98  name = regex_replace(name,reOneToMany,"Association<$1,ToMany,$2>");
99  name = regex_replace(name,reOneToValue,"Association<$1,ToValue,$2>");
100  name = regex_replace(name,reOneToManyWithQuality,"Association<$1,ToMany,$2,WithQuantity,$3>");
101  name = regex_replace(name,reToRangeMap,"RangeMap<$1,$2>");
102  name = regex_replace(name,reToRefs1,"Refs<$1<$2>>");
103  name = regex_replace(name,reToRefs2,"Refs<$1,$2>");
104  name = regex_replace(name,reToRefsAssoc,"Refs<Association$1>");
105  //std::cout <<"standardRenames '"<<name<<"'"<<std::endl;
106  return name;
107  }
108 
111  using namespace boost;
112  std::string result = removeExtraSpaces(iFullName);
113 
114  smatch theMatch;
115  if(regex_match(result,theMatch,reTemplateArgs)) {
116  //std::cout <<"found match \""<<theMatch.str(1) <<"\"" <<std::endl;
117  //static regex const templateClosing(">$");
118  //std::string aMatch = regex_replace(theMatch.str(1),templateClosing,"");
119  std::string aMatch = theMatch.str(1);
120  std::string theSub = handleTemplateArguments(aMatch);
121  regex const eMatch(std::string("(^[^<]*)<")+aMatch+">");
122  result = regex_replace(result,eMatch,theSub+"$1");
123  }
124  return result;
125  }
126 
128  using namespace boost;
130  bool shouldStop = false;
131  while(!shouldStop) {
132  if(std::string::npos != result.find_first_of("<")) {
133  smatch theMatch;
134  if(regex_search(result,theMatch,reTemplateClass)) {
135  std::string templateClass = theMatch.str(1);
136  std::string friendlierName = removeAllSpaces(subFriendlyName(templateClass));
137 
138  //std::cout <<" t: "<<templateClass <<" f:"<<friendlierName<<std::endl;
139  result = regex_replace(result, regex(templateClass),friendlierName);
140  } else {
141  //static regex const eComma(",");
142  //result = regex_replace(result,eComma,"");
143  std::cout <<" no template match for \""<<result<<"\""<<std::endl;
144  assert(0 =="failed to find a match for template class");
145  }
146  } else {
147  shouldStop=true;
148  }
149  }
150  result = regex_replace(result,reComma,"");
151  return result;
152  }
154  typedef tbb::concurrent_unordered_map<std::string, std::string> Map;
155  static Map s_fillToFriendlyName;
156  auto itFound = s_fillToFriendlyName.find(iFullName);
157  if(s_fillToFriendlyName.end()==itFound) {
158  itFound = s_fillToFriendlyName.insert(Map::value_type(iFullName, handleNamespaces(subFriendlyName(standardRenames(iFullName))))).first;
159  }
160  return itFound->second;
161  }
162  }
163 } // namespace edm
164 
static boost::regex const reOneToValue("edm::AssociationMap< *edm::OneToValue<(.*?),(.*?), *u[a-z]*> >")
static boost::regex const reTemplateArgs("[^<]*<(.*)>$")
static boost::regex const reSharedPtr("std::shared_ptr")
static boost::regex const reOwnVector("edm::OwnVector<(.*), *edm::ClonePolicy<\\1 *> >")
Definition: CLHEP.h:16
static boost::regex const reLong("long ")
static boost::regex const reUnsigned("unsigned ")
static boost::regex const reToRangeMap("edm::RangeMap< *(.*), *(.*), *edm::ClonePolicy<([^>]*)> >")
static boost::regex const reSorted("edm::SortedCollection<(.*), *edm::StrictWeakOrdering<\\1 *> >")
static boost::regex const reToRefs2("edm::RefVector< *(.*) *, *(.*) *, *edm::refhelper::FindUsingAdvance< *\\1, *\\2 *> *>")
static boost::regex const reAllSpaces(" +")
std::string removeAllSpaces(std::string const &iIn)
Definition: FriendlyName.cc:39
std::string subFriendlyName(std::string const &iFullName)
static boost::regex const reTemplateClass("([^<>,]+<[^<>]*>)")
static boost::regex const reCXX11("std::__cxx11::")
static boost::regex const reOneToMany("edm::AssociationMap< *edm::OneToMany<(.*?),(.*?), *u[a-z]*> >")
static boost::regex const reString3("std::basic_string<char,std::char_traits<char> >")
static boost::regex const reOneToOne("edm::AssociationMap< *edm::OneToOne<(.*?),(.*?), *u[a-z]*> >")
static boost::regex const reVector("std::vector")
static boost::regex const reLongLong("Long64_t")
static boost::regex const reToVector("edm::AssociationVector<(.*), *(.*), *edm::Ref.*,.*>")
static boost::regex const reOneToManyWithQuality("edm::AssociationMap<edm::OneToManyWithQuality<(.*?), *(.*?), *(.*?), *u[a-z]*> >")
std::string friendlyName(std::string const &iFullName)
static boost::regex const reToRefs1("edm::RefVector< *(.*)< *(.*) *>, *\\2 *, *edm::refhelper::FindUsingAdvance< *\\1< *\\2 *> *, *\\2 *> *>")
std::string handleNamespaces(std::string const &iIn)
Definition: FriendlyName.cc:29
static boost::regex const reAIKR(", *edm::helper::AssociationIdenticalKeyReference")
static boost::regex const reULongLong("ULong64_t")
static boost::regex const reBeginSpace("^ +")
std::string standardRenames(std::string const &iIn)
Definition: FriendlyName.cc:77
std::string handleTemplateArguments(std::string const &)
static boost::regex const reComma(",")
static boost::regex const reColons("::")
static boost::regex const reclangabi("std::__1::")
static std::string const emptyString("")
static boost::regex const reString("std::basic_string<char>")
HLT enums.
static boost::regex const reEndSpace(" +$")
static boost::regex const reWrapper("edm::Wrapper<(.*)>")
static boost::regex const reUniquePtr("std::unique_ptr")
static boost::regex const reString2("std::string")
std::string removeExtraSpaces(std::string const &iIn)
Definition: FriendlyName.cc:34
static boost::regex const reToRefsAssoc("edm::RefVector< *Association(.*) *, *edm::helper(.*), *Association(.*)::Find>")