CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWDetailViewManager.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FWDetailViewManager
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Chris Jones
10 // Created: Wed Mar 5 09:13:47 EST 2008
11 //
12 
13 #include <stdio.h>
14 #include <boost/bind.hpp>
15 #include <algorithm>
16 #include <sstream>
17 
18 #include "TClass.h"
19 #include "TROOT.h"
20 #include "TGWindow.h"
21 #include "TGFrame.h"
22 #include "TEveManager.h"
23 #include "TEveWindowManager.h"
24 #include "TEveWindow.h"
25 #include "TQObject.h"
26 
38 
42 static
44 {
45  std::string::size_type first = iFull.find_first_of('@');
46  std::string::size_type second = iFull.find_first_of('@',first+1);
47  return iFull.substr(first+1,second-first-1);
48 }
49 //
50 // constructors and destructor
51 //
53  m_context(iCtx)
54 {
55  // force white background for all embedded canvases
56  gROOT->SetStyle("Plain");
57 
59  gEve->GetWindowManager()->Connect( "WindowDeleted(TEveWindow*)", "FWDetailViewManager", this, "eveWindowDestroyed(TEveWindow*)");
60 }
61 
63 {
65  gEve->GetWindowManager()->Disconnect("WindowDeleted(TEveWindow*)", this, "eveWindowDestroyed(TEveWindow*)" );
66 }
67 
68 void
70 {
71 
72  TEveWindowSlot* slot = TEveWindow::CreateWindowMainFrame();
73  TEveCompositeFrameInMainFrame* eveFrame = (TEveCompositeFrameInMainFrame*)slot->GetEveFrame();
74 
75  // find the right viewer for this item
76  std::string typeName = edm::TypeWithDict(*(id.item()->modelType()->GetTypeInfo())).name();
77  std::vector<std::string> viewerNames = findViewersFor(typeName);
78  if(0==viewerNames.size()) {
79  fwLog(fwlog::kError) << "FWDetailViewManager: don't know what detailed view to "
80  "use for object " << id.item()->name() << std::endl;
81  assert(0!=viewerNames.size());
82  }
83 
84  //see if one of the names matches iViewName
86  for(std::vector<std::string>::iterator it = viewerNames.begin(), itEnd = viewerNames.end(); it != itEnd; ++it) {
87  std::string t = viewNameFrom(*it);
88  //std::cout <<"'"<<iViewName<< "' '"<<t<<"'"<<std::endl;
89  if(t == iViewName) {
90  match = *it;
91  break;
92  }
93  }
94  assert(match.size() != 0);
95  FWDetailViewBase* detailView = FWDetailViewFactory::get()->create(match);
96  assert(0!=detailView);
97 
98  TEveWindowSlot* ws = (TEveWindowSlot*)(eveFrame->GetEveWindow());
99  detailView->init(ws);
100  detailView->build(id);
101  detailView->setBackgroundColor(m_context->colorManager()->background());
102 
103  TGMainFrame* mf = (TGMainFrame*)(eveFrame->GetParent());
104  mf->SetWindowName(Form("%s Detail View [%d]", id.item()->name().c_str(), id.index()));
105 
106  m_views.push_back(ViewFrame(eveFrame, detailView, eveFrame->GetEveWindow()));
107 
108  mf->MapRaised();
109 }
110 
111 std::vector<std::string>
113 {
114  std::string typeName = edm::TypeWithDict(*(iId.item()->modelType()->GetTypeInfo())).name();
115  std::vector<std::string> fullNames = findViewersFor(typeName);
116  std::vector<std::string> justViewNames;
117  justViewNames.reserve(fullNames.size());
118  std::transform(fullNames.begin(),fullNames.end(),std::back_inserter(justViewNames),&viewNameFrom);
119  return justViewNames;
120 }
121 
122 std::vector<std::string>
124 {
125 
126  std::vector<std::string> returnValue;
127 
128  std::map<std::string,std::vector<std::string> >::const_iterator itFind = m_typeToViewers.find(iType);
129  if(itFind != m_typeToViewers.end()) {
130  return itFind->second;
131  }
132  //create a list of the available ViewManager's
133  std::set<std::string> detailViews;
134 
135  std::vector<edmplugin::PluginInfo> available = FWDetailViewFactory::get()->available();
136  std::transform(available.begin(),
137  available.end(),
138  std::inserter(detailViews,detailViews.begin()),
139  boost::bind(&edmplugin::PluginInfo::name_,_1));
140  unsigned int closestMatch= 0xFFFFFFFF;
141 
142 
143  for(std::set<std::string>::iterator it = detailViews.begin(), itEnd=detailViews.end();
144  it!=itEnd;
145  ++it) {
146 
147  if (m_context->getHidePFBuilders()) {
148  std::size_t found = it->find("PF ");
149  if (found != std::string::npos)
150  break;
151  }
152  std::string::size_type first = it->find_first_of('@');
153  std::string type = it->substr(0,first);
154 
155  //see if we match via inheritance
156  FWSimpleRepresentationChecker checker(type,"",0,false);
157  FWRepresentationInfo info = checker.infoFor(iType);
158  bool pass = false;
159  if(closestMatch > info.proximity()) {
160  pass = true;
161  std::string::size_type firstD = it->find_first_of('&')+1;
162  if(firstD != std::string::npos) {
163  std::stringstream ss(it->substr(firstD));
164  std::string ml;
165  while(std::getline(ss, ml, '&')) {
167  fwLog(fwlog::kDebug) << "DetailView "<< *it << " requires module label " << ml << std::endl;
168  pass = false;
169  break;
170  }
171  }
172  }
173  if (pass) {
174  returnValue.push_back(*it);
175  }
176  else {
177  std::string::size_type first = (*it).find_first_of('@');
178  std::string vn = *it;
179  vn.insert(++first, "!");
180  returnValue.push_back(vn);
181  }
182  }
183  }
184  m_typeToViewers[iType]=returnValue;
185  return returnValue;
186 }
187 
188 void
190 {
191  for (vViews_i i = m_views.begin(); i != m_views.end(); ++i)
192  (*i).m_detailView->setBackgroundColor(m_context->colorManager()->background());
193 }
194 
195 
196 void
198 {
199  while (!m_views.empty())
200  {
201  m_views.front().m_eveWindow->DestroyWindowAndSlot();
202  }
203 }
204 
205 void
207 {
208  for (vViews_i i = m_views.begin(); i != m_views.end(); ++i)
209  {
210  if (ew == i->m_eveWindow)
211  {
212  // printf("========================== delete %s \n", ew->GetElementName());
213  delete i->m_detailView;
214  m_views.erase(i);
215  break;
216  }
217  }
218 }
type
Definition: HCALResponse.h:21
int i
Definition: DBlmapReader.cc:9
virtual FWRepresentationInfo infoFor(const std::string &iTypeName) const
static const TGPicture * info(bool iBackgroundIsBlack)
Color_t background() const
virtual bool hasModuleLabel(std::string &moduleLabel)=0
FWColorManager * colorManager() const
Definition: Context.h:65
assert(m_qm.get())
vViews_t::iterator vViews_i
uint16_t size_type
static std::string viewNameFrom(const std::string &iFull)
std::vector< std::string > findViewersFor(const std::string &) const
unsigned int proximity() const
measures how &#39;close&#39; this representation is to the type in question, the large the number the farther...
void eveWindowDestroyed(TEveWindow *)
U second(std::pair< T, U > const &p)
std::string name() const
std::map< std::string, std::vector< std::string > > m_typeToViewers
bool getHidePFBuilders() const
Definition: Context.h:91
fireworks::Context * m_context
#define fwLog(_level_)
Definition: fwLog.h:50
FWJobMetadataManager * metadataManager() const
Definition: Context.h:69
std::vector< std::string > detailViewsFor(const FWModelId &) const
void openDetailViewFor(const FWModelId &, const std::string &)
std::string name_
Definition: PluginInfo.h:29
const TClass * modelType() const
Definition: FWEventItem.cc:561
FWDetailViewManager(fireworks::Context *)
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
sigc::signal< void > colorsHaveChanged_
const FWEventItem * item() const
Definition: FWModelId.h:44
T get(const Candidate &c)
Definition: component.h:55