ATLAS Offline Software
Loading...
Searching...
No Matches
AthenaOutputStreamTool Class Reference

This is the implementation of IAthenaOutputStreamTool. More...

#include <AthenaOutputStreamTool.h>

Inheritance diagram for AthenaOutputStreamTool:

Public Types

typedef std::pair< std::string, std::string > TypeKeyPair
 Stream out objects.
typedef std::vector< TypeKeyPairTypeKeyPairs
typedef std::vector< DataObject * > DataObjectVec
 Stream out a vector of objects Must convert to DataObject, e.g.

Public Member Functions

 AthenaOutputStreamTool (const std::string &type, const std::string &name, const IInterface *parent)
 Standard AlgTool Constructor.
virtual StatusCode initialize () override
 AthAlgTool Interface method implementations:
StatusCode connectServices (const std::string &dataStore, const std::string &cnvSvc, bool extendProvenenceRecord) override
 Specify which data store and conversion service to use and whether to extend provenance Only use if one wants to override jobOptions.
StatusCode connectOutput (const std::string &outputName="") override
 Connect to the output stream Must connectOutput BEFORE streaming Only specify "outputName" if one wants to override jobOptions.
StatusCode commitOutput (bool doCommit=false) override
 Commit the output stream after having streamed out objects Must commitOutput AFTER streaming.
StatusCode finalizeOutput () override
 Finalize the output stream after the last commit, e.g.
virtual StatusCode streamObjects (const TypeKeyPairs &typeKeys, const std::string &outputName="") override
virtual StatusCode streamObjects (const DataObjectVec &dataObjects, const std::string &outputName="") override
virtual StatusCode getInputItemList (SG::IFolder *m_p2BWrittenFromTool) override

Private Member Functions

StatusCode connectServices ()
 Do the real connection to services.
void propagateProvenance (const DataHeader &src_dh)
 copy provenance records when creating new DataHeaders

Private Attributes

StringProperty m_outputName { this, "OutputFile", "", "name of the output db name"}
StringProperty m_dataHeaderKey { this, "DataHeaderKey", "", "name of the data header key: defaults to tool name"}
StringProperty m_processTag { this, "ProcessingTag", "", "tag of processing stage: defaults to SG key of DataHeader (Stream name)"}
StringProperty m_outputCollection { this, "OutputCollection", "", "custom container name prefix for DataHeader: default = "" (will result in \"POOLContainer_\")"}
StringProperty m_containerPrefix { this, "PoolContainerPrefix", "", "prefix for top level POOL container: default = \"CollectionTree\""}
StringProperty m_containerNameHint { this, "TopLevelContainerName", "0", "naming hint policy for top level POOL container: default = \"0\""}
StringProperty m_metaDataOutputCollection { this, "MetaDataOutputCollection", "", "custom container name prefix for MetaDataHeader: default = "" (will result in \"MetaDataHdr\")"}
StringProperty m_metaDataContainerPrefix { this, "MetaDataPoolContainerPrefix", "", "prefix for top level MetaData container: default = "" (will result in \"MetaData\")"}
StringProperty m_branchNameHint { this, "SubLevelBranchName", "0", "naming hint policy for POOL branching: default = \"0\"" }
BooleanProperty m_extend { this, "SaveDecisions", false, "Set to true to add streaming decisions to an attributeList"}
std::string m_outputAttributes
std::string m_metaDataOutputAttributes
SG::ReadHandleKey< AthenaAttributeListm_attrListKey {this, "AttributeListKey", "", "optional key for AttributeList to be written as part of the DataHeader: default = \"\""}
std::string m_attrListWrite {""}
ServiceHandle< StoreGateSvcm_store { this, "Store", "StoreGateSvc/DetectorStore", "Pointer to the data store"}
ServiceHandle< IConversionSvc > m_conversionSvc { this, "ConversionService", "AthenaPoolCnvSvc" }
 Keep reference to the data conversion service.
ServiceHandle< IClassIDSvc > m_clidSvc
 Ref to ClassIDSvc to convert type name to clid.
ServiceHandle< IDecisionSvcm_decSvc
 Ref to DecisionSvc.
DataHeaderm_dataHeader {nullptr}
 Current DataHeader for streamed objects.
bool m_connectionOpen {false}
 Flag to tell whether connectOutput has been called.
bool m_extendProvenanceRecord {false}
 Flag as to whether to extend provenance via the DataHeader.
std::string m_keepProvenancesStr
 RegEx string to match provenance tags to keep in the output DataHeader. Retrieved from an OutputStream property.
std::regex m_keepProvenancesRE
 RegEx pattern created from m_keepProvenancesStr.
std::map< std::string, bool > m_keepProvenanceMatch
 Cache provenance RegEx matching result in a map.
std::set< std::string > m_skippedItems
 set of skipped item keys, because of missing CLID

Detailed Description

This is the implementation of IAthenaOutputStreamTool.

Definition at line 34 of file AthenaOutputStreamTool.h.

Member Typedef Documentation

◆ DataObjectVec

typedef std::vector<DataObject*> AthenaOutputStreamTool::DataObjectVec

Stream out a vector of objects Must convert to DataObject, e.g.

#include "AthenaKernel/StorableConversions.h" T* obj = xxx; DataObject* dataObject = SG::asStorable(obj);

Definition at line 76 of file AthenaOutputStreamTool.h.

◆ TypeKeyPair

typedef std::pair<std::string, std::string> AthenaOutputStreamTool::TypeKeyPair

Stream out objects.

Provide vector of typeName/key pairs. If key is empty, assumes only one object and this will fail if there is more than one

Definition at line 67 of file AthenaOutputStreamTool.h.

◆ TypeKeyPairs

Definition at line 68 of file AthenaOutputStreamTool.h.

Constructor & Destructor Documentation

◆ AthenaOutputStreamTool()

AthenaOutputStreamTool::AthenaOutputStreamTool ( const std::string & type,
const std::string & name,
const IInterface * parent )

Standard AlgTool Constructor.

Constructor.

Definition at line 30 of file AthenaOutputStreamTool.cxx.

32 : base_class(type, name, parent),
33 m_clidSvc("ClassIDSvc", name),
34 m_decSvc("DecisionSvc/DecisionSvc", name) {
35}
ServiceHandle< IDecisionSvc > m_decSvc
Ref to DecisionSvc.
ServiceHandle< IClassIDSvc > m_clidSvc
Ref to ClassIDSvc to convert type name to clid.

Member Function Documentation

◆ commitOutput()

StatusCode AthenaOutputStreamTool::commitOutput ( bool doCommit = false)
override

Commit the output stream after having streamed out objects Must commitOutput AFTER streaming.

Definition at line 322 of file AthenaOutputStreamTool.cxx.

322 {
323 ATH_MSG_DEBUG("In commitOutput");
324 // Connect the output file to the service
325 if (m_conversionSvc->commitOutput(m_outputName.value(), doCommit).isFailure()) {
326 ATH_MSG_ERROR("Unable to commit output " << m_outputName.value());
327 return(StatusCode::FAILURE);
328 }
329 // Set flag that connection is closed
330 m_connectionOpen = false;
331 return(StatusCode::SUCCESS);
332}
#define ATH_MSG_DEBUG(x,...)
#define ATH_MSG_ERROR(x,...)
bool m_connectionOpen
Flag to tell whether connectOutput has been called.
ServiceHandle< IConversionSvc > m_conversionSvc
Keep reference to the data conversion service.

◆ connectOutput()

StatusCode AthenaOutputStreamTool::connectOutput ( const std::string & outputName = "")
override

Connect to the output stream Must connectOutput BEFORE streaming Only specify "outputName" if one wants to override jobOptions.

Definition at line 146 of file AthenaOutputStreamTool.cxx.

146 {
147 ATH_MSG_DEBUG("In connectOutput " << outputName);
148
149 // Use arg if not empty, save the output name
150 if (!outputName.empty()) {
151 m_outputName.setValue(outputName);
152 }
153 if (m_outputName.value().empty()) {
154 ATH_MSG_ERROR("No OutputName provided");
155 return(StatusCode::FAILURE);
156 }
157 // Connect services if not already available
158 if (m_store == 0 || m_conversionSvc == 0) {
160 }
161 // Connect the output file to the service
162 if (m_conversionSvc->connectOutput(m_outputName.value()).isFailure()) {
163 ATH_MSG_ERROR("Unable to connect output " << m_outputName.value());
164 return(StatusCode::FAILURE);
165 } else {
166 ATH_MSG_DEBUG("Connected to " << m_outputName.value());
167 }
168
169 // Remove DataHeader with same key if it exists
170 if (m_store->contains<DataHeader>(m_dataHeaderKey)) {
171 const DataHeader* preDh = nullptr;
172 if (m_store->retrieve(preDh, m_dataHeaderKey).isSuccess()) {
173 if (m_store->removeDataAndProxy(preDh).isFailure()) {
174 ATH_MSG_ERROR("Unable to get proxy for the DataHeader with key " << m_dataHeaderKey);
175 return(StatusCode::FAILURE);
176 }
177 ATH_MSG_DEBUG("Released DataHeader with key " << m_dataHeaderKey);
178 }
179 }
180
181 // Create new DataHeader
182 m_dataHeader = new DataHeader();
183 m_dataHeader->setProcessTag(m_processTag);
184
185 // Retrieve all existing DataHeaders from StoreGate
186 const DataHeader* dh = nullptr;
187 std::vector<std::string> dhKeys;
188 m_store->keys<DataHeader>(dhKeys);
189 //construct string out of loop
190 const std::string boolTypeStr{"bool"};
191 for (const std::string& dhKey : dhKeys) {
192 bool primaryDH = false;
193 if (!m_store->transientContains<DataHeader>(dhKey)) {
194 if (dhKey == "EventSelector") primaryDH = true;
195 ATH_MSG_DEBUG("No transientContains DataHeader with key " << dhKey);
196 }
197 if (m_store->retrieve(dh, dhKey).isFailure()) {
198 ATH_MSG_DEBUG("Unable to retrieve the DataHeader with key " << dhKey);
199 }
200 // Propagate provenance from file inputs and the primary event-selector
201 // header. Headers produced earlier in this job are intentionally not
202 // treated as inputs; for example, an AOD written after an ESD in the
203 // same job will not automatically retain provenance back to that ESD.
204 // Revisit this policy if same-job output chaining needs support again.
205 if (dh->isInput() || primaryDH) {
206 propagateProvenance( *dh );
207 }
208 }
209
210 // Attach the attribute list to the DataHeader if requested
211 if (!m_attrListKey.key().empty() && m_store->storeID() == StoreID::EVENT_STORE) {
212 auto attrListHandle = SG::makeHandle(m_attrListKey);
213 if (!attrListHandle.isValid()) {
214 ATH_MSG_WARNING("Unable to retrieve AttributeList with key " << m_attrListKey);
215 } else {
216 m_dataHeader->setAttributeList(attrListHandle.cptr());
217 if (m_extend) { // Add streaming decisions
218 ATH_MSG_DEBUG("Adding stream decisions to " << m_attrListWrite);
219 // Look for attribute list created for mini-EventInfo
220 const AthenaAttributeList* attlist(attrListHandle.cptr());
221
222 // Build new attribute list for modification
223 AthenaAttributeList* newone = new AthenaAttributeList(attlist->specification());
224 newone->copyData(*attlist);
225
226 // Now loop over stream definitions and add decisions
227 auto streams = m_decSvc->getStreams();
228 for (auto it = streams.begin();
229 it != streams.end(); ++it) {
230 newone->extend(*it,boolTypeStr);
231 (*newone)[*it].data<bool>() = m_decSvc->isEventAccepted(*it,Gaudi::Hive::currentContext());
232 ATH_MSG_DEBUG("Added stream decision for " << *it << " to " << m_attrListKey);
233 }
234 // record new attribute list with old key + suffix
235 const AthenaAttributeList* attrList2 = nullptr;
236 if (!m_store->contains<AthenaAttributeList>(m_attrListWrite)) {
237 if (m_store->record(newone,m_attrListWrite).isFailure()) {
238 ATH_MSG_ERROR("Unable to record att list " << m_attrListWrite);
239 }
240 } else {
241 ATH_MSG_DEBUG("Decisions already added by a different stream");
242 }
243 if (m_store->retrieve(attrList2,m_attrListWrite).isFailure()) {
244 ATH_MSG_ERROR("Unable to record att list " << m_attrListWrite);
245 } else {
246 m_dataHeader->setAttributeList(attrList2);
247 }
248 } // list extend check
249 } // list retrieve check
250 } // list property check
251
252 // Record DataHeader in StoreGate
253 SG::WriteHandle<DataHeader> wh(m_dataHeaderKey, m_store->name());
254 if (wh.record(std::unique_ptr<DataHeader>(m_dataHeader)).isFailure()) {
255 ATH_MSG_ERROR("Unable to record DataHeader with key " << m_dataHeaderKey);
256 return(StatusCode::FAILURE);
257 } else {
258 ATH_MSG_DEBUG("Recorded DataHeader with key " << m_dataHeaderKey);
259 }
261 // Set flag that connection is open
262 m_connectionOpen = true;
263 return(StatusCode::SUCCESS);
264}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_WARNING(x,...)
DataHeader * m_dataHeader
Current DataHeader for streamed objects.
StatusCode connectServices()
Do the real connection to services.
void propagateProvenance(const DataHeader &src_dh)
copy provenance records when creating new DataHeaders
ServiceHandle< StoreGateSvc > m_store
SG::ReadHandleKey< AthenaAttributeList > m_attrListKey
bool isInput() const
Check whether StatusFlag is "Input".
@ EVENT_STORE
Definition StoreID.h:26
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
str outputName
Definition lumiFormat.py:65
str wh
Definition parseDir.py:45

◆ connectServices() [1/2]

StatusCode AthenaOutputStreamTool::connectServices ( )
private

Do the real connection to services.

Definition at line 137 of file AthenaOutputStreamTool.cxx.

137 {
138 // Find the data store
139 if (m_store.retrieve().isFailure() || m_store == 0) {
140 ATH_MSG_ERROR("Could not locate " << m_store.typeAndName() << " store");
141 return(StatusCode::FAILURE);
142 }
143 return(StatusCode::SUCCESS);
144}

◆ connectServices() [2/2]

StatusCode AthenaOutputStreamTool::connectServices ( const std::string & dataStore,
const std::string & cnvSvc,
bool extendProvenenceRecord )
override

Specify which data store and conversion service to use and whether to extend provenance Only use if one wants to override jobOptions.

Definition at line 103 of file AthenaOutputStreamTool.cxx.

105 {
106 // Release old data store
107 if (m_store.isValid()) {
108 if (m_store.release().isFailure()) {
109 ATH_MSG_ERROR("Could not release " << m_store.typeAndName() << " store");
110 }
111 }
112 m_store = ServiceHandle<StoreGateSvc>(dataStore, this->name());
113 if (cnvSvc != m_conversionSvc.type() && cnvSvc != "EventPersistencySvc") {
114 if (m_conversionSvc.release().isFailure()) {
115 ATH_MSG_ERROR("Could not release " << m_conversionSvc.type());
116 }
117 m_conversionSvc = ServiceHandle<IConversionSvc>(cnvSvc, this->name());
118 if (m_conversionSvc.retrieve().isFailure() || m_conversionSvc == 0) {
119 ATH_MSG_ERROR("Could not locate " << m_conversionSvc.type());
120 return(StatusCode::FAILURE);
121 }
122 }
123 m_extendProvenanceRecord = extendProvenenceRecord;
124 auto pprop = dynamic_cast<const IProperty*>(parent());
125 if (not pprop){
126 ATH_MSG_ERROR("'parent' could not be cast to IProperty");
127 return(StatusCode::FAILURE);
128 }
129 auto keep = dynamic_cast<const StringProperty&>( pprop->getProperty("KeepProvenanceTagsRegEx") );
130 m_keepProvenancesStr = keep.value();
131 // create RegEx pattern from the property value, specify extended grammar
132 m_keepProvenancesRE = std::regex(m_keepProvenancesStr, std::regex::extended);
133
134 return(connectServices());
135}
bool m_extendProvenanceRecord
Flag as to whether to extend provenance via the DataHeader.
std::regex m_keepProvenancesRE
RegEx pattern created from m_keepProvenancesStr.
std::string m_keepProvenancesStr
RegEx string to match provenance tags to keep in the output DataHeader. Retrieved from an OutputStrea...

◆ finalizeOutput()

StatusCode AthenaOutputStreamTool::finalizeOutput ( )
override

Finalize the output stream after the last commit, e.g.

in finalize

Definition at line 334 of file AthenaOutputStreamTool.cxx.

334 {
335 AthCnvSvc* athConversionSvc = dynamic_cast<AthCnvSvc*>(m_conversionSvc.get());
336 if (athConversionSvc != 0) {
337 if (athConversionSvc->disconnectOutput(m_outputName.value()).isFailure()) {
338 ATH_MSG_ERROR("Unable to finalize output " << m_outputName.value());
339 return(StatusCode::FAILURE);
340 }
341 }
342 return(StatusCode::SUCCESS);
343}
virtual StatusCode disconnectOutput(const std::string &output)
Disconnect output files from the service.

◆ getInputItemList()

StatusCode AthenaOutputStreamTool::getInputItemList ( SG::IFolder * m_p2BWrittenFromTool)
overridevirtual

Definition at line 517 of file AthenaOutputStreamTool.cxx.

517 {
518 const std::string hltKey = "HLTAutoKey";
519 SG::ConstIterator<DataHeader> beg;
520 SG::ConstIterator<DataHeader> ending;
521 if (m_store->retrieve(beg, ending).isFailure() || beg == ending) {
522 ATH_MSG_DEBUG("No DataHeaders present in StoreGate");
523 } else {
524 for ( ; beg != ending; ++beg) {
525 if (m_store->transientContains<DataHeader>(beg.key()) && beg->isInput()) {
526 for (std::vector<DataHeaderElement>::const_iterator it = beg->begin(), itLast = beg->end();
527 it != itLast; ++it) {
528 // Only insert the primary clid, not the ones for the symlinks!
529 CLID clid = it->getPrimaryClassID();
530 if (clid != ClassID_traits<DataHeader>::ID()) {
531 //check the typename is known ... we make an exception if the key contains 'Aux.' ... aux containers may not have their keys known yet in some cases
532 //see https://its.cern.ch/jira/browse/ATLASG-59 for the solution
533 std::string typeName;
534 if (m_clidSvc->getTypeNameOfID(clid, typeName).isFailure() && it->getKey().find("Aux.") == std::string::npos) {
535 if (m_skippedItems.find(it->getKey()) == m_skippedItems.end()) {
536 ATH_MSG_WARNING("Skipping " << it->getKey() << " with unknown clid " << clid << " . Further warnings for this item are suppressed" );
537 m_skippedItems.insert(it->getKey());
538 }
539 continue;
540 }
541 ATH_MSG_DEBUG("Adding " << typeName << "#" << it->getKey() << " (clid " << clid << ") to itemlist");
542 const std::string keyName = it->getKey();
543 if (keyName.size() > 10 && keyName.compare(0, 10,hltKey)==0) {
544 p2BWrittenFromTool->add(clid, hltKey + "*").ignore();
545 } else if (keyName.size() > 10 && keyName.compare(keyName.size() - 10, 10, hltKey)==0) {
546 p2BWrittenFromTool->add(clid, "*" + hltKey).ignore();
547 } else {
548 p2BWrittenFromTool->add(clid, keyName).ignore();
549 }
550 }
551 }
552 }
553 }
554 }
555 ATH_MSG_DEBUG("Adding DataHeader for stream " << name());
556 return(StatusCode::SUCCESS);
557}
uint32_t CLID
The Class ID type.
std::set< std::string > m_skippedItems
set of skipped item keys, because of missing CLID

◆ initialize()

StatusCode AthenaOutputStreamTool::initialize ( )
overridevirtual

AthAlgTool Interface method implementations:

Definition at line 37 of file AthenaOutputStreamTool.cxx.

37 {
38 ATH_MSG_INFO("Initializing " << name());
39
40 ATH_CHECK( m_clidSvc.retrieve() );
41 ATH_CHECK( m_conversionSvc.retrieve() );
42
43 // Autoconfigure
44 if (m_dataHeaderKey.empty()) {
45 m_dataHeaderKey.setValue(name());
46 // Remove "ToolSvc." from m_dataHeaderKey.
47 if (m_dataHeaderKey.value().starts_with( "ToolSvc.")) {
48 m_dataHeaderKey.setValue(m_dataHeaderKey.value().substr(8));
49 // Remove "Tool" from m_dataHeaderKey.
50 if (m_dataHeaderKey.value().find("Tool") == m_dataHeaderKey.size() - 4) {
51 m_dataHeaderKey.setValue(m_dataHeaderKey.value().substr(0, m_dataHeaderKey.size() - 4));
52 }
53 } else {
54 const INamedInterface* parentAlg = dynamic_cast<const INamedInterface*>(parent());
55 if (parentAlg != 0) {
56 m_dataHeaderKey.setValue(parentAlg->name());
57 }
58 }
59 }
60 if (m_processTag.empty()) {
62 }
63
64 { // handle the AttrKey overwrite
65 const std::string keyword = "[AttributeListKey=";
66 std::string::size_type pos = m_outputName.value().find(keyword);
67 if( (pos != std::string::npos) ) {
68 ATH_MSG_INFO("The AttrListKey will be overwritten/set by the value from the OutputName: " << m_outputName);
69 const std::string attrListKey = m_outputName.value().substr(pos + keyword.size(),
70 m_outputName.value().find(']', pos + keyword.size()) - pos - keyword.size());
71 m_attrListKey = attrListKey;
72 }
73 }
74 if ( ! m_attrListKey.key().empty() ) {
75 ATH_CHECK(m_attrListKey.initialize());
76 m_attrListWrite = m_attrListKey.key() + "Decisions";
77 //ATH_CHECK(m_attrListWrite.initialize());
78 }
79
80 if (!m_outputCollection.value().empty()) {
81 m_outputAttributes += "[OutputCollection=" + m_outputCollection.value() + "]";
82 }
83 if (!m_containerPrefix.value().empty()) {
84 m_outputAttributes += "[PoolContainerPrefix=" + m_containerPrefix.value() + "]";
85 }
86 if (m_containerNameHint.value() != "0") {
87 m_outputAttributes += "[TopLevelContainerName=" + m_containerNameHint.value() + "]";
88 }
89 if (m_branchNameHint.value() != "0") {
90 m_outputAttributes += "[SubLevelBranchName=" + m_branchNameHint.value() + "]";
91 }
92 if (!m_metaDataOutputCollection.value().empty()) {
93 m_metaDataOutputAttributes += "[OutputCollection=" + m_metaDataOutputCollection.value() + "]";
94 }
95 if (!m_metaDataContainerPrefix.value().empty()) {
96 m_metaDataOutputAttributes += "[PoolContainerPrefix=" + m_metaDataContainerPrefix.value() + "]";
97 }
98
99 if (m_extend) ATH_CHECK(m_decSvc.retrieve());
100 return(StatusCode::SUCCESS);
101}
#define ATH_MSG_INFO(x,...)
StringProperty m_metaDataContainerPrefix
StringProperty m_metaDataOutputCollection
std::string keyword(const std::string &classname)

◆ propagateProvenance()

void AthenaOutputStreamTool::propagateProvenance ( const DataHeader & src_dh)
private

copy provenance records when creating new DataHeaders

Definition at line 267 of file AthenaOutputStreamTool.cxx.

268{
269 // keep track of provenance entries inserted into the new DataHeader
270 std::set<std::string> insertedTags{};
271 // Add DataHeader token to the new DataHeader
273 std::string pTag;
274 std::unique_ptr<SG::TransientAddress> dhTransAddr;
275 for (const DataHeaderElement& dhe : src_dh) {
276 if (dhe.getPrimaryClassID() == ClassID_traits<DataHeader>::ID()) {
277 pTag = dhe.getKey();
278 dhTransAddr.reset( dhe.getAddress( m_conversionSvc->repSvcType() ) );
279 }
280 }
281 // Update dhTransAddr to handle fast merged files.
282 if( auto dhProxy=m_store->proxy(&src_dh); dhProxy && dhProxy->address() ) {
283 DataHeaderElement dhe(dhProxy, dhProxy->address(), pTag);
284 m_dataHeader->insertProvenance(dhe);
285 insertedTags.insert(std::move(pTag));
286 }
287 else if( dhTransAddr ) {
288 DataHeaderElement dhe(dhTransAddr.get(), dhTransAddr->address(), pTag);
289 m_dataHeader->insertProvenance(dhe);
290 insertedTags.insert(std::move(pTag));
291 }
292 }
293
294 // empty regexpr means do not keep any provenance
295 if( !m_keepProvenancesStr.empty() ) {
296 // Each stream tag is written only once in the provenance record
297 // In files where there are multiple entries per stream tag
298 // the record is in reverse, i.e., the latest appears first.
299 // Therefore, only keep the first entry if there are multiple
300 // matches so that we retain the latest one.
301 for(auto iter=src_dh.beginProvenance(), iEnd=src_dh.endProvenance(); iter != iEnd; ++iter) {
302 const auto & currentKey = (*iter).getKey();
303 if( insertedTags.insert(currentKey).second ) {
304 // first prov with that tag. Now check if we want to keep that tag
305 bool keep = false;
306 auto it = m_keepProvenanceMatch.find( currentKey );
307 if( it != m_keepProvenanceMatch.end() ) {
308 keep = it->second;
309 } else {
310 keep = std::regex_search(currentKey, m_keepProvenancesRE);
311 m_keepProvenanceMatch[currentKey] = keep;
312 }
313 if( keep ) {
314 m_dataHeader->insertProvenance(*iter);
315 }
316 }
317 }
318 }
319}
std::map< std::string, bool > m_keepProvenanceMatch
Cache provenance RegEx matching result in a map.

◆ streamObjects() [1/2]

StatusCode AthenaOutputStreamTool::streamObjects ( const DataObjectVec & dataObjects,
const std::string & outputName = "" )
overridevirtual

Definition at line 406 of file AthenaOutputStreamTool.cxx.

406 {
407 // Check that a connection has been opened
408 if (!m_connectionOpen) {
409 ATH_MSG_ERROR("Connection NOT open. Please open a connection before streaming out objects.");
410 return(StatusCode::FAILURE);
411 }
412 // Connect the output file to the service
413 std::string outputConnectionString = outputName;
414 const std::string defaultMetaDataString = "[OutputCollection=MetaDataHdr][PoolContainerPrefix=MetaData]";
415 if (std::string::size_type mpos = outputConnectionString.find(defaultMetaDataString); mpos!=std::string::npos) {
416 // If we're in here we're writing MetaData
417 // Now let's see if we should be overwriting the MetaData attributes
418 // For the time-being this happens when we're writing MetaData in the augmentation mode
419 if (!m_metaDataOutputAttributes.empty()) {
420 // Note: This won't work quite right if only one attribute is set though!
421 outputConnectionString.replace(mpos, defaultMetaDataString.length(), m_metaDataOutputAttributes);
422 }
423 }
424 for (std::string::size_type pos = m_outputAttributes.find('['); pos != std::string::npos; pos = m_outputAttributes.find('[', ++pos)) {
425 if (outputConnectionString.find(m_outputAttributes.substr(pos, m_outputAttributes.find('=', pos) + 1 - pos)) == std::string::npos) {
426 outputConnectionString += m_outputAttributes.substr(pos, m_outputAttributes.find(']', pos) + 1 - pos);
427 }
428 }
429
430 // Check that the DataHeader is still valid
431 DataObject* dataHeaderObj = m_store->accessData(ClassID_traits<DataHeader>::ID(), m_dataHeaderKey);
432 std::map<DataObject*, IOpaqueAddress*> written;
433 for (DataObject* dobj : dataObjects) {
434 // Do not write the DataHeader via the explicit list
435 if (dobj->clID() == ClassID_traits<DataHeader>::ID()) {
436 ATH_MSG_DEBUG("Explicit request to write DataHeader: " << dobj->name() << " - skipping it.");
437 // Do not stream out same object twice
438 } else if (written.find(dobj) != written.end()) {
439 // Print warning and skip
440 ATH_MSG_DEBUG("Trying to write DataObject twice (clid/key): " << dobj->clID() << " " << dobj->name());
441 ATH_MSG_DEBUG(" Skipping this one.");
442 } else {
443 // Write object
444 IOpaqueAddress* addr = new TokenAddress(0, dobj->clID(), outputConnectionString);
445 addr->addRef();
446 if (m_conversionSvc->createRep(dobj, addr).isSuccess()) {
447 written.insert(std::pair<DataObject*, IOpaqueAddress*>(dobj, addr));
448 } else {
449 ATH_MSG_ERROR("Could not create Rep for DataObject (clid/key):" << dobj->clID() << " " << dobj->name());
450 return(StatusCode::FAILURE);
451 }
452 }
453 }
454 // End of loop over DataObjects, write DataHeader
455 if ((m_conversionSvc.type() == "AthenaPoolCnvSvc" || m_conversionSvc.type() == "AthenaPoolSharedIOCnvSvc") && dataHeaderObj != nullptr) {
456 IOpaqueAddress* addr = new TokenAddress(0, dataHeaderObj->clID(), outputConnectionString);
457 addr->addRef();
458 if (m_conversionSvc->createRep(dataHeaderObj, addr).isSuccess()) {
459 written.insert(std::pair<DataObject*, IOpaqueAddress*>(dataHeaderObj, addr));
460 } else {
461 ATH_MSG_ERROR("Could not create Rep for DataHeader");
462 return(StatusCode::FAILURE);
463 }
464 }
465 for (DataObject* dobj : dataObjects) {
466 // call fillRepRefs of persistency service
467 SG::DataProxy* proxy = dynamic_cast<SG::DataProxy*>(dobj->registry());
468 if (proxy != nullptr && written.find(dobj) != written.end()) {
469 IOpaqueAddress* addr(written.find(dobj)->second);
470 if ((m_conversionSvc->fillRepRefs(addr, dobj)).isSuccess()) {
471 if (dobj->clID() != 1 || addr->par()[0] != "\n") {
472 if (dobj->clID() != ClassID_traits<DataHeader>::ID()) {
473 m_dataHeader->insert(proxy, addr);
474 } else {
475 m_dataHeader->insert(proxy, addr, m_processTag);
476 }
477 if (proxy->address() == nullptr) {
478 proxy->setAddress(addr);
479 }
480 addr->release();
481 }
482 } else {
483 ATH_MSG_ERROR("Could not fill Object Refs for DataObject (clid/key):" << dobj->clID() << " " << dobj->name());
484 return(StatusCode::FAILURE);
485 }
486 } else {
487 ATH_MSG_WARNING("Could cast DataObject " << dobj->clID() << " " << dobj->name());
488 }
489 }
490 m_dataHeader->addHash(&*m_store);
491 if ((m_conversionSvc.type() == "AthenaPoolCnvSvc" || m_conversionSvc.type() == "AthenaPoolSharedIOCnvSvc") && dataHeaderObj != nullptr) {
492 // End of DataObjects, fill refs for DataHeader
493 SG::DataProxy* proxy = dynamic_cast<SG::DataProxy*>(dataHeaderObj->registry());
494 if (proxy != nullptr && written.find(dataHeaderObj) != written.end()) {
495 IOpaqueAddress* addr(written.find(dataHeaderObj)->second);
496 if ((m_conversionSvc->fillRepRefs(addr, dataHeaderObj)).isSuccess()) {
497 if (dataHeaderObj->clID() != 1 || addr->par()[0] != "\n") {
498 if (dataHeaderObj->clID() != ClassID_traits<DataHeader>::ID()) {
499 m_dataHeader->insert(proxy, addr);
500 } else {
501 m_dataHeader->insert(proxy, addr, m_processTag);
502 }
503 addr->release();
504 }
505 } else {
506 ATH_MSG_ERROR("Could not fill Object Refs for DataHeader");
507 return(StatusCode::FAILURE);
508 }
509 } else {
510 ATH_MSG_ERROR("Could not cast DataHeader");
511 return(StatusCode::FAILURE);
512 }
513 }
514 return(StatusCode::SUCCESS);
515}

◆ streamObjects() [2/2]

StatusCode AthenaOutputStreamTool::streamObjects ( const TypeKeyPairs & typeKeys,
const std::string & outputName = "" )
overridevirtual

Definition at line 345 of file AthenaOutputStreamTool.cxx.

345 {
346 ATH_MSG_DEBUG("In streamObjects");
347 // Check that a connection has been opened
348 if (!m_connectionOpen) {
349 ATH_MSG_ERROR("Connection NOT open. Please open a connection before streaming out objects.");
350 return(StatusCode::FAILURE);
351 }
352 // Use arg if not empty, save the output name
353 if (!outputName.empty()) {
354 m_outputName.setValue(outputName);
355 }
356 if (m_outputName.value().empty()) {
357 ATH_MSG_ERROR("No OutputName provided");
358 return(StatusCode::FAILURE);
359 }
360 // Now iterate over the type/key pairs and stream out each object
361 std::vector<DataObject*> dataObjects;
362 for (TypeKeyPairs::const_iterator first = typeKeys.begin(), last = typeKeys.end();
363 first != last; ++first) {
364 const std::string& type = (*first).first;
365 const std::string& key = (*first).second;
366 // Find the clid for type name from the CLIDSvc
367 CLID clid;
368 if (m_clidSvc->getIDOfTypeName(type, clid).isFailure()) {
369 ATH_MSG_ERROR("Could not get clid for typeName " << type);
370 return(StatusCode::FAILURE);
371 }
372 DataObject* dObj = 0;
373 // Two options: no key or explicit key
374 if (key.empty()) {
375 ATH_MSG_DEBUG("Get data object with no key");
376 // Get DataObject without key
377 dObj = m_store->accessData(clid);
378 } else {
379 ATH_MSG_DEBUG("Get data object with key");
380 // Get DataObjects with key
381 dObj = m_store->accessData(clid, key);
382 }
383 if (dObj == 0) {
384 // No object - print warning and return
385 ATH_MSG_DEBUG("No object found for type " << type << " key " << key);
386 return(StatusCode::SUCCESS);
387 } else {
388 ATH_MSG_DEBUG("Found object for type " << type << " key " << key);
389 }
390 // Save the dObj
391 dataObjects.push_back(dObj);
392 }
393 // Stream out objects
394 if (dataObjects.size() == 0) {
395 ATH_MSG_DEBUG("No data objects found");
396 return(StatusCode::SUCCESS);
397 }
398 StatusCode status = streamObjects(dataObjects, m_outputName.value());
399 if (!status.isSuccess()) {
400 ATH_MSG_ERROR("Could not stream out objects");
401 return(status);
402 }
403 return(StatusCode::SUCCESS);
404}
virtual StatusCode streamObjects(const TypeKeyPairs &typeKeys, const std::string &outputName="") override
::StatusCode StatusCode
StatusCode definition for legacy code.
status
Definition merge.py:16

Member Data Documentation

◆ m_attrListKey

SG::ReadHandleKey<AthenaAttributeList> AthenaOutputStreamTool::m_attrListKey {this, "AttributeListKey", "", "optional key for AttributeList to be written as part of the DataHeader: default = \"\""}
private

Definition at line 101 of file AthenaOutputStreamTool.h.

101{this, "AttributeListKey", "", "optional key for AttributeList to be written as part of the DataHeader: default = \"\""};

◆ m_attrListWrite

std::string AthenaOutputStreamTool::m_attrListWrite {""}
private

Definition at line 102 of file AthenaOutputStreamTool.h.

102{""};

◆ m_branchNameHint

StringProperty AthenaOutputStreamTool::m_branchNameHint { this, "SubLevelBranchName", "0", "naming hint policy for POOL branching: default = \"0\"" }
private

Definition at line 96 of file AthenaOutputStreamTool.h.

96{ this, "SubLevelBranchName", "0", "naming hint policy for POOL branching: default = \"0\"" };

◆ m_clidSvc

ServiceHandle<IClassIDSvc> AthenaOutputStreamTool::m_clidSvc
private

Ref to ClassIDSvc to convert type name to clid.

Definition at line 108 of file AthenaOutputStreamTool.h.

◆ m_connectionOpen

bool AthenaOutputStreamTool::m_connectionOpen {false}
private

Flag to tell whether connectOutput has been called.

Definition at line 114 of file AthenaOutputStreamTool.h.

114{false};

◆ m_containerNameHint

StringProperty AthenaOutputStreamTool::m_containerNameHint { this, "TopLevelContainerName", "0", "naming hint policy for top level POOL container: default = \"0\""}
private

Definition at line 93 of file AthenaOutputStreamTool.h.

93{ this, "TopLevelContainerName", "0", "naming hint policy for top level POOL container: default = \"0\""};

◆ m_containerPrefix

StringProperty AthenaOutputStreamTool::m_containerPrefix { this, "PoolContainerPrefix", "", "prefix for top level POOL container: default = \"CollectionTree\""}
private

Definition at line 92 of file AthenaOutputStreamTool.h.

92{ this, "PoolContainerPrefix", "", "prefix for top level POOL container: default = \"CollectionTree\""};

◆ m_conversionSvc

ServiceHandle<IConversionSvc> AthenaOutputStreamTool::m_conversionSvc { this, "ConversionService", "AthenaPoolCnvSvc" }
private

Keep reference to the data conversion service.

Definition at line 106 of file AthenaOutputStreamTool.h.

106{ this, "ConversionService", "AthenaPoolCnvSvc" };

◆ m_dataHeader

DataHeader* AthenaOutputStreamTool::m_dataHeader {nullptr}
private

Current DataHeader for streamed objects.

Definition at line 112 of file AthenaOutputStreamTool.h.

112{nullptr};

◆ m_dataHeaderKey

StringProperty AthenaOutputStreamTool::m_dataHeaderKey { this, "DataHeaderKey", "", "name of the data header key: defaults to tool name"}
private

Definition at line 89 of file AthenaOutputStreamTool.h.

89{ this, "DataHeaderKey", "", "name of the data header key: defaults to tool name"};

◆ m_decSvc

ServiceHandle<IDecisionSvc> AthenaOutputStreamTool::m_decSvc
private

Ref to DecisionSvc.

Definition at line 110 of file AthenaOutputStreamTool.h.

◆ m_extend

BooleanProperty AthenaOutputStreamTool::m_extend { this, "SaveDecisions", false, "Set to true to add streaming decisions to an attributeList"}
private

Definition at line 97 of file AthenaOutputStreamTool.h.

97{ this, "SaveDecisions", false, "Set to true to add streaming decisions to an attributeList"};

◆ m_extendProvenanceRecord

bool AthenaOutputStreamTool::m_extendProvenanceRecord {false}
private

Flag as to whether to extend provenance via the DataHeader.

Definition at line 117 of file AthenaOutputStreamTool.h.

117{false};

◆ m_keepProvenanceMatch

std::map<std::string, bool> AthenaOutputStreamTool::m_keepProvenanceMatch
private

Cache provenance RegEx matching result in a map.

Definition at line 123 of file AthenaOutputStreamTool.h.

◆ m_keepProvenancesRE

std::regex AthenaOutputStreamTool::m_keepProvenancesRE
private

RegEx pattern created from m_keepProvenancesStr.

Definition at line 121 of file AthenaOutputStreamTool.h.

◆ m_keepProvenancesStr

std::string AthenaOutputStreamTool::m_keepProvenancesStr
private

RegEx string to match provenance tags to keep in the output DataHeader. Retrieved from an OutputStream property.

Definition at line 119 of file AthenaOutputStreamTool.h.

◆ m_metaDataContainerPrefix

StringProperty AthenaOutputStreamTool::m_metaDataContainerPrefix { this, "MetaDataPoolContainerPrefix", "", "prefix for top level MetaData container: default = "" (will result in \"MetaData\")"}
private

Definition at line 95 of file AthenaOutputStreamTool.h.

95{ this, "MetaDataPoolContainerPrefix", "", "prefix for top level MetaData container: default = "" (will result in \"MetaData\")"};

◆ m_metaDataOutputAttributes

std::string AthenaOutputStreamTool::m_metaDataOutputAttributes
private

Definition at line 100 of file AthenaOutputStreamTool.h.

◆ m_metaDataOutputCollection

StringProperty AthenaOutputStreamTool::m_metaDataOutputCollection { this, "MetaDataOutputCollection", "", "custom container name prefix for MetaDataHeader: default = "" (will result in \"MetaDataHdr\")"}
private

Definition at line 94 of file AthenaOutputStreamTool.h.

94{ this, "MetaDataOutputCollection", "", "custom container name prefix for MetaDataHeader: default = "" (will result in \"MetaDataHdr\")"};

◆ m_outputAttributes

std::string AthenaOutputStreamTool::m_outputAttributes
private

Definition at line 99 of file AthenaOutputStreamTool.h.

◆ m_outputCollection

StringProperty AthenaOutputStreamTool::m_outputCollection { this, "OutputCollection", "", "custom container name prefix for DataHeader: default = "" (will result in \"POOLContainer_\")"}
private

Definition at line 91 of file AthenaOutputStreamTool.h.

91{ this, "OutputCollection", "", "custom container name prefix for DataHeader: default = "" (will result in \"POOLContainer_\")"};

◆ m_outputName

StringProperty AthenaOutputStreamTool::m_outputName { this, "OutputFile", "", "name of the output db name"}
private

Definition at line 88 of file AthenaOutputStreamTool.h.

88{ this, "OutputFile", "", "name of the output db name"};

◆ m_processTag

StringProperty AthenaOutputStreamTool::m_processTag { this, "ProcessingTag", "", "tag of processing stage: defaults to SG key of DataHeader (Stream name)"}
private

Definition at line 90 of file AthenaOutputStreamTool.h.

90{ this, "ProcessingTag", "", "tag of processing stage: defaults to SG key of DataHeader (Stream name)"};

◆ m_skippedItems

std::set<std::string> AthenaOutputStreamTool::m_skippedItems
private

set of skipped item keys, because of missing CLID

Definition at line 126 of file AthenaOutputStreamTool.h.

◆ m_store

ServiceHandle<StoreGateSvc> AthenaOutputStreamTool::m_store { this, "Store", "StoreGateSvc/DetectorStore", "Pointer to the data store"}
private

Definition at line 104 of file AthenaOutputStreamTool.h.

104{ this, "Store", "StoreGateSvc/DetectorStore", "Pointer to the data store"};

The documentation for this class was generated from the following files: