Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include <sstream>
00016 #include "TClass.h"
00017 #include "Reflex/Object.h"
00018 #include "Reflex/Type.h"
00019
00020 #include "CommonTools/Utils/src/Grammar.h"
00021 #include "CommonTools/Utils/interface/Exception.h"
00022
00023
00024 #include "Fireworks/Core/interface/FWModelExpressionSelector.h"
00025 #include "Fireworks/Core/interface/FWEventItem.h"
00026 #include "Fireworks/Core/interface/FWModelChangeManager.h"
00027 #include "Fireworks/Core/interface/FWExpressionException.h"
00028 #include "Fireworks/Core/src/expressionFormatHelpers.h"
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073 void
00074 FWModelExpressionSelector::select(FWEventItem* iItem, const std::string& iExpression) const
00075 {
00076 using namespace fireworks::expression;
00077
00078 ROOT::Reflex::Type type= ROOT::Reflex::Type::ByName(iItem->modelType()->GetName());
00079 assert(type != ROOT::Reflex::Type());
00080
00081
00082 std::string temp = oldToNewFormat(iExpression);
00083
00084
00085 using namespace boost::spirit::classic;
00086 reco::parser::SelectorPtr selectorPtr;
00087 reco::parser::Grammar grammar(selectorPtr,type);
00088 try {
00089 if(!parse(temp.c_str(), grammar.use_parser<0>() >> end_p, space_p).full) {
00090 throw FWExpressionException("syntax error", -1);
00091
00092 }
00093 } catch(const reco::parser::BaseException& e) {
00094
00095 throw FWExpressionException(reco::parser::baseExceptionWhat(e), indexFromNewFormatToOldFormat(temp,e.where-temp.c_str(),iExpression));
00096
00097 }
00098
00099
00100 FWChangeSentry sentry(*(iItem->changeManager()));
00101 for( unsigned int index = 0; index < iItem->size(); ++index ) {
00102 ROOT::Reflex::Object o(type, const_cast<void *>(iItem->modelData(index)));
00103
00104 if((*selectorPtr)(o)) {
00105 iItem->select(index);
00106 }
00107 }
00108 }
00109
00110
00111
00112