CMS 3D CMS Logo

FWModelExpressionSelector.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FWModelExpressionSelector
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Chris Jones
10 // Created: Wed Jan 23 10:37:22 EST 2008
11 //
12 
13 // system include files
14 #include <sstream>
15 #include "TClass.h"
18 
21 
22 // user include files
28 //
29 // constants, enums and typedefs
30 //
31 
32 //
33 // static data member definitions
34 //
35 
36 //
37 // constructors and destructor
38 //
39 /*
40  FWModelExpressionSelector::FWModelExpressionSelector()
41  {
42  }
43  */
44 // FWModelExpressionSelector::FWModelExpressionSelector(const FWModelExpressionSelector& rhs)
45 // {
46 // // do actual copying here;
47 // }
48 
49 /*FWModelExpressionSelector::~FWModelExpressionSelector()
50  {
51  }
52  */
53 //
54 // assignment operators
55 //
56 // const FWModelExpressionSelector& FWModelExpressionSelector::operator=(const FWModelExpressionSelector& rhs)
57 // {
58 // //An exception safe implementation is
59 // FWModelExpressionSelector temp(rhs);
60 // swap(rhs);
61 //
62 // return *this;
63 // }
64 
65 //
66 // member functions
67 //
68 
69 //
70 // const member functions
71 //
72 void FWModelExpressionSelector::select(FWEventItem* iItem, const std::string& iExpression, Color_t iColor) const {
73  using namespace fireworks::expression;
74 
77 
78  //Backwards compatibility with old format
79  std::string temp = oldToNewFormat(iExpression);
80 
81  //now setup the parser
82  using namespace boost::spirit::classic;
83  reco::parser::SelectorPtr selectorPtr;
84  reco::parser::Grammar grammar(selectorPtr, type);
85  try {
86  if (!parse(temp.c_str(), grammar.use_parser<0>() >> end_p, space_p).full) {
87  throw FWExpressionException("syntax error", -1);
88  //std::cout <<"failed to parse "<<iExpression<<" because of syntax error"<<std::endl;
89  }
90  } catch (const reco::parser::BaseException& e) {
91  //NOTE: need to calculate actual position before doing the regex
93  indexFromNewFormatToOldFormat(temp, e.where - temp.c_str(), iExpression));
94  //std::cout <<"failed to parse "<<iExpression<<" because "<<reco::parser::baseExceptionWhat(e)<<std::endl;
95  }
96 
97  FWChangeSentry sentry(*(iItem->changeManager()));
98  for (unsigned int index = 0; index < iItem->size(); ++index) {
99  edm::ObjectWithDict o(type, const_cast<void*>(iItem->modelData(index)));
100  if ((*selectorPtr)(o)) {
101  iItem->select(index);
102  if (iColor > 0) {
104  props.setColor(iColor);
105  iItem->setDisplayProperties(index, props);
106  }
107  }
108  }
109 }
110 
111 //
112 // static member functions
113 //
size_t size() const
Definition: FWEventItem.cc:457
long indexFromNewFormatToOldFormat(const std::string &iNewFormat, long iNewFormatIndex, const std::string &iOldFormat)
vector< string > parse(string line, const string &delimiter)
const void * modelData(int iIndex) const
Definition: FWEventItem.cc:466
void setColor(Color_t iColor)
boost::spirit::classic::parser_error< reco::parser::SyntaxErrors > BaseException
Definition: Exception.h:33
FWModelChangeManager * changeManager() const
Definition: FWEventItem.h:123
assert(be >=bs)
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:64
void select(int iIndex) const
Definition: FWEventItem.cc:224
static TypeWithDict byName(std::string const &name)
Definition: TypeWithDict.cc:74
const TClass * modelType() const
Definition: FWEventItem.cc:464
void select(FWEventItem *iItem, const std::string &iExpression, Color_t iColor=-1) const
const char * baseExceptionWhat(const BaseException &e)
returns the appropriate &#39;what&#39; message for the exception
Definition: Exception.h:36
std::string oldToNewFormat(const std::string &iExpression)
void setDisplayProperties(int iIndex, const FWDisplayProperties &) const
Definition: FWEventItem.cc:247
ModelInfo modelInfo(int iIndex) const
Definition: FWEventItem.cc:446
std::shared_ptr< SelectorBase > SelectorPtr
Definition: SelectorPtr.h:18