15#include "TBufferFile.h"
16#include "TVirtualCollectionProxy.h"
29#include "TStreamerInfo.h"
32#include <sys/resource.h>
44 if (!clidsvc.retrieve()){
48 if (!clidsvc->getTypeNameOfID(clid, name).isSuccess()) {
51 (void)TClass::GetClass(
name.c_str());
59 using SG::AuxStoreInternal::addVector;
71 const std::type_info* getElementType (
const std::string& tname,
72 std::string& elementTypeName ) {
73 TClass* cls = TClass::GetClass( tname.c_str() );
74 if ( cls ==
nullptr )
return nullptr;
75 TVirtualCollectionProxy* prox = cls->GetCollectionProxy();
76 if ( prox ==
nullptr )
return nullptr;
77 if ( prox->GetValueClass() !=
nullptr ) {
78 elementTypeName = prox->GetValueClass()->GetName();
79 return prox->GetValueClass()->GetTypeInfo();
82 elementTypeName =
type.getTypeName();
83 return type.getTypeInfo();
89 std::string stripStdVec (
const std::string& s_in) {
91 std::string::size_type pos{0};
92 while ((pos =
s.find (
"std::vector<")) != std::string::npos) {
105 bool versionChange(
const std::string& type1,
const std::string& type2) {
106 static const std::regex
re(
".+(_v[0-9]+).*");
108 return ( std::regex_match(type1, m1,
re) and
109 std::regex_match(type2, m2,
re) and
110 m1.str(1) !=
m2.str(1) );
118 using Payload = std::vector<uint32_t>;
120 bool operator()(
int level,
bool ,
const char* location,
const char* ) {
121 if ( level >= kError && location && strstr(location,
"TBufferFile::ReadClass")) {
123 struct rlimit core_limit;
124 getrlimit(RLIMIT_CORE, &core_limit);
125 core_limit.rlim_cur = core_limit.rlim_max;
126 setrlimit(RLIMIT_CORE, &core_limit);
128 std::cout <<
"TriggerEDMDeserialiserAlg: Raising core dump soft size limit to " << core_limit.rlim_cur
129 <<
" and trying to dump core file..." << std::endl;
130 Athena::DebugAids::coredump(SIGSEGV);
133 if ( level >= kError && location && strstr(location,
"TClass::Load")) {
134 std::cout <<
"TriggerEDMDeserialiserAlg: buff dump; start " << m_start <<
"\n";
136 std::cout <<
"TriggerEDMDeserialiserAlg: payload dump\n";
137 CxxUtils::hexdump (std::cout, m_payload->data(), m_payload->size() *
sizeof(Payload::value_type));
143 handleError (
const char* buf,
size_t bufsize,
const Payload* payload,
145 : m_buf (
buf), m_bufsize (bufsize), m_payload (
payload), m_start(
start)
151 const Payload* m_payload;
189 return start + (*start);
195 std::vector<std::string> labels;
205 std::memcpy( buffer, &(*dataStart),
dataSize(start) );
209std::unique_ptr<TList> TriggerEDMDeserialiserAlg::s_streamerInfoList{};
221 return StatusCode::SUCCESS;
226 s_streamerInfoList.reset();
227 return StatusCode::SUCCESS;
234 if ( not resultHandle.isValid() ) {
236 return StatusCode::FAILURE;
240 const Payload* dataptr =
nullptr;
241 if ( resultHandle->getSerialisedData(
m_moduleID, dataptr ).isFailure() ) {
244 return StatusCode::SUCCESS;
247 return StatusCode::FAILURE;
251 return StatusCode::SUCCESS;
257 std::unique_ptr<char[]> buff = std::make_unique<char[]>(buffSize);
260 auto resize = [&buffSize, &buff](
const size_t neededSize ) ->
void {
261 if ( neededSize > buffSize ) {
262 buffSize = neededSize;
263 buff = std::make_unique<char[]>(buffSize);
272 std::unique_ptr<WritableAuxStore> currentAuxStoreOwner;
278 std::string previousKey;
279 while ( start != dataptr->end() ) {
282 std::string transientTypeName, transientTypeInfoName;
288 std::string persistentTypeName{ descr[0] };
289 const std::string key{ descr[1] };
300 " type: "<< transientTypeName <<
" (" << transientTypeInfoName <<
")" <<
301 " persistent type: " << persistentTypeName <<
" key: " << key <<
" size: " << bsize );
316 CxxUtils::FPControl fpcontrol;
317 if (persistentTypeName ==
"xAOD::BTaggingTrigAuxContainer_v1") {
318 fpcontrol.holdExceptions();
321 size_t usedBytes{ bsize };
322 void* obj{
nullptr };
326 obj =
m_serializerSvc->deserialize( buff.get(), usedBytes, classDesc );
329 ATH_MSG_DEBUG(
"Deserialised object of ptr: " << obj <<
" which used: " << usedBytes <<
330 " bytes from available: " << bsize );
331 if ( obj ==
nullptr ) {
332 ATH_MSG_ERROR(
"Deserialisation of object of CLID " << clid <<
" and transientTypeName " <<
333 transientTypeName <<
" # " << key <<
" failed" );
334 return StatusCode::FAILURE;
336 const bool isxAODInterfaceContainer = (transientTypeName.starts_with(
"xAOD") and
337 not transientTypeName.contains(
"Aux") and
338 not transientTypeName.contains(
"ElementLink"));
339 const bool isxAODAuxContainer = (transientTypeName.starts_with(
"xAOD") and
340 transientTypeName.contains(
"Aux"));
341 const bool isxAODDecoration = transientTypeName.contains(
"vector");
342 const bool isTPContainer = persistentTypeName.contains(
"_p");
343 const bool isVersionChange = versionChange(persistentTypeName, transientTypeInfoName);
346 isxAODAuxContainer, isxAODDecoration, isTPContainer ) );
348 if ( isTPContainer or isVersionChange ) {
349 if ( isVersionChange )
ATH_MSG_DEBUG(
"Version change detected from " << persistentTypeName <<
" to "
350 << transientTypeInfoName <<
". Will invoke PT converter." );
352 std::string decodedTransientName;
353 void * converted =
m_tpTool->convertPT( persistentTypeName, obj, decodedTransientName );
363 if ( isxAODInterfaceContainer or isxAODAuxContainer or isTPContainer ) {
365 const std::string outputName =
m_prefix + key;
367 outputName,
false,
false );
368 if ( proxyPtr ==
nullptr ) {
369 ATH_MSG_WARNING(
"Recording of object of CLID " << clid <<
" and name " << outputName <<
" failed" );
372 if ( isxAODInterfaceContainer ) {
376 if (xAODInterfaceContainer!=
nullptr &&
377 xAODInterfaceContainer->
trackIndices() && currentAuxStore==
nullptr) {
378 ATH_MSG_DEBUG(
"Container with key " << previousKey <<
" is missing its Aux store");
381 currentAuxStore =
nullptr;
384 ATH_MSG_WARNING(
"No BaseInfoBase for CLID "<< clid <<
" and name " << outputName);
386 xAODInterfaceContainer =
391 }
else if (isxAODAuxContainer) {
393 ATH_CHECK( key.find(
'.') == key.size()-1 );
394 ATH_CHECK( currentAuxStore ==
nullptr and xAODInterfaceContainer !=
nullptr );
401 xAODInterfaceContainer->
setStore(auxHolder);
402 currentAuxStoreOwner = std::make_unique<WritableAuxStore>();
403 currentAuxStore = currentAuxStoreOwner.get();
407 p->setStore( currentAuxStoreOwner.release() );
409 currentAuxStore =
nullptr;
410 xAODInterfaceContainer =
nullptr;
413 }
else if ( isxAODDecoration ) {
414 if(
m_skipDuplicates and (currentAuxStore ==
nullptr || xAODInterfaceContainer ==
nullptr)) {
415 ATH_MSG_DEBUG(
"Decoration " << key <<
" encountered with no active container. Assume this was already handled.");
417 ATH_CHECK( currentAuxStore !=
nullptr and xAODInterfaceContainer !=
nullptr );
419 currentAuxStore, xAODInterfaceContainer ) );
424 return StatusCode::SUCCESS;
431 const bool isPacked = persistentTypeName.contains(
"SG::PackedContainer");
434 SG::auxid_t id = registry.findAuxID ( decorationName );
436 std::string regTypeName = stripStdVec( registry.getVecTypeName(
id) );
437 if ( regTypeName != stripStdVec(transientTypeName) and not transientTypeName.contains(
"ElementLink") )
441 if ( regTypeName != stripStdVec(tname.
getTypeName()) ) {
442 ATH_MSG_INFO(
"Schema evolution required for decoration \"" << decorationName <<
"\" from " << transientTypeName <<
" to " << registry.getVecTypeName(
id ) <<
" not handled yet");
443 return StatusCode::SUCCESS;
447 std::string elementTypeName;
448 const std::type_info* elt_tinfo = getElementType( transientTypeName, elementTypeName );
450 ATH_MSG_DEBUG(
"Dynamic decoration: \"" << decorationName <<
"\" of type " << transientTypeName <<
" will create a dynamic ID, stored type" << elementTypeName );
453 ATH_MSG_DEBUG(
"Unstreaming decoration \"" << decorationName <<
"\" of type " << transientTypeName <<
" aux ID " <<
id <<
" class " << persistentTypeName <<
" packed " << isPacked );
454 std::unique_ptr<SG::IAuxTypeVector>
vec( registry.makeVectorFromData (
id, obj,
nullptr, isPacked,
true) );
456 ATH_MSG_DEBUG(
"Size for \"" << decorationName <<
"\" " <<
vec->size() <<
" interface " << interfaceContainer->
size_v() );
458 if (
vec->size() != 0 ) {
460 currentAuxStore->addVector(std::move(
vec),
false);
462 SG::AuxElement::TypelessConstAccessor accessor( decorationName );
463 accessor.getDataArray( *interfaceContainer );
465 return StatusCode::SUCCESS;
469 ATH_MSG_DEBUG(
"Recognised type " << transientTypeName <<
" as: "
470 << (isxAODInterfaceContainer ?
"xAOD Interface Container":
"" )
471 << (isxAODAuxContainer ?
"xAOD Aux Container ":
"" )
472 << ( isDecoration ?
"xAOD Decoration" :
"")
473 << ( isTPContainer ?
"T/P Container " :
"") );
475 const std::vector<bool> typeOfContainer( { isxAODInterfaceContainer, isxAODAuxContainer, isDecoration, isTPContainer } );
476 const size_t count = std::count( typeOfContainer.begin(), typeOfContainer.end(),
true );
478 ATH_MSG_ERROR(
"Could not recognise the kind of container " << transientTypeName );
479 return StatusCode::FAILURE;
482 ATH_MSG_ERROR(
"Ambiguous container kind deduced from the transient type name " << transientTypeName );
484 << (isxAODInterfaceContainer ?
"xAOD Interface Context":
"" )
485 << (isxAODAuxContainer ?
" xAOD Aux Container ":
"" )
486 << ( isDecoration ?
"xAOD Decoration" :
"")
487 << ( isTPContainer ?
"T/P Container " :
"") );
488 return StatusCode::FAILURE;
490 return StatusCode::SUCCESS;
497 if (s_streamerInfoList) {
501 std::string extStreamerInfos =
"bs-streamerinfos.root";
504 TFile extFile(extFilePath.c_str());
506 s_streamerInfoList = std::unique_ptr<TList>(extFile.GetStreamerInfoList());
507 for(
const auto&& infObj: *s_streamerInfoList) {
508 TString t_name=infObj->GetName();
509 if (t_name.BeginsWith(
"listOfRules")){
514 TStreamerInfo*
inf =
static_cast<TStreamerInfo*
>(infObj);
516 TClass *cl =
inf->GetClass();
518 ATH_MSG_DEBUG(
"external TStreamerInfo for " << cl->GetName() <<
519 " checksum: " << std::hex <<
inf->GetCheckSum() << std::dec );
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x,...)
#define ATH_MSG_ERROR(x,...)
#define ATH_MSG_WARNING(x,...)
#define ATH_MSG_INFO(x,...)
An auxiliary data store that holds data internally.
Handle mappings between names and auxid_t.
Basic definitions for auxiliary types.
std::vector< size_t > vec
uint32_t CLID
The Class ID type.
Helper to control FP exceptions.
virtual void lock()=0
Interface to allow an object to lock itself when made const in SG.
This are the SEAL debug aids, adapted to build in Atlas, after the drop of that project.
This is the signal handler from SEAL, adapted to build in Atlas, after the drop of that project.
convert to and from a SG storable
int fragmentCount(uint32_t data, int id)
Run a MT piece of code with an alternate root error handler.
ServiceHandle< StoreGateSvc > & evtStore()
An algorithm that can be simultaneously executed in multiple threads.
Allows to insert void* returned from serialisation into the store.
virtual void * object() override
Object reference supporting deferred reading from StoreGate.
static std::string find_file(const std::string &logical_file_name, const std::string &search_path)
std::string getTypeName() const
Return the name of this type.
Run a MT piece of code with an alternate root error handler.
Handle mappings between names and auxid_t.
static AuxTypeRegistry & instance()
Return the singleton registry instance.
Manage index tracking and synchronization of auxiliary data.
void setStore(SG::IAuxStore *store)
Set the store associated with this object.
bool trackIndices() const
Return true if index tracking is enabled for this container.
virtual size_t size_v() const =0
Return the size of the container.
The non-template portion of the BaseInfo implementation.
static const BaseInfoBase * find(CLID clid)
Find the BaseInfoBase instance for clid.
void * cast(void *p, CLID clid) const
Cast to a base pointer.
Interface for objects taking part in direct ROOT I/O.
Interface for non-const operations on an auxiliary store.
Utility class (not a tool or so) to serialize strings into stream of 32bit integers.
static TScopeAdapter ByNameNoQuiet(const std::string &name, Bool_t load=kTRUE)
void Destruct(void *place) const
Bool_t IsComplete() const
WritableAuxStore()=default
from the HLTResultMT Each serialised collection is a chunk of words with the content as described bel...
virtual StatusCode initialize() override
Gaudi::Property< int > m_initialSerialisationBufferSize
Gaudi::Property< bool > m_permitMissingModule
static constexpr size_t CLIDOffset
Payload::const_iterator PayloadIterator
static std::mutex s_mutex
static constexpr size_t NameLengthOffset
static constexpr size_t NameOffset
ServiceHandle< IAthenaSerializeSvc > m_serializerSvc
SG::ReadHandleKey< HLT::HLTResultMT > m_resultKey
virtual StatusCode finalize() override
ToolHandle< TrigSerTPTool > m_tpTool
Gaudi::Property< std::string > m_prefix
StatusCode deserialiseDynAux(const std::string &transientTypeName, const std::string &persistentTypeName, const std::string &decorationName, void *obj, WritableAuxStore *currentAuxStore, SG::AuxVectorBase *interface) const
Handle decoration.
TriggerEDMDeserialiserAlg(const std::string &name, ISvcLocator *pSvcLocator)
Gaudi::Property< bool > m_skipDuplicates
StatusCode checkSanity(const std::string &transientTypeName, bool isxAODInterfaceContainer, bool isxAODAuxContainer, bool isDecoration, bool isTPContainer) const
Checker for data integrity, one and only one of the passed booleans can be true, else FAILURE is retu...
StatusCode deserialise(const Payload *dataptr) const
Performs actual deserialisation loop.
ServiceHandle< IClassIDSvc > m_clidSvc
std::vector< uint32_t > Payload
Gaudi::Property< int > m_moduleID
void add_bs_streamerinfos()
virtual StatusCode execute(const EventContext &context) const override
Find the auxid for a dynamic branch.
bool contains(const std::string &s, const std::string ®x)
does a string contain the substring
int count(std::string s, const std::string ®x)
count how many occurances of a regx are in a string
Helpers to make a nice dump of a region of memory.
void hexdump(std::ostream &s, const void *addr, size_t n, size_t offset=0)
Make a hex dump of memory.
Collection of helper functions for raw pointer operations on the bytestream payload.
constexpr TDA::PayloadIterator toNextFragment(TDA::PayloadIterator start)
Returns starting point of the next fragment, can be == end().
constexpr size_t dataSize(TDA::PayloadIterator start)
Size in bytes of the buffer that is needed to decode next fragment data content.
std::vector< std::string > collectionDescription(TDA::PayloadIterator start)
String description of the collection stored in the next fragment, returns persistent type name and th...
TriggerEDMDeserialiserAlg TDA
constexpr CLID collectionCLID(TDA::PayloadIterator start)
CLID of the collection stored in the next fragment.
constexpr size_t nameLength(TDA::PayloadIterator start)
Length of the serialised name payload.
void toBuffer(TDA::PayloadIterator start, char *buffer)
Copies fragment to the buffer, no size checking, use dataSize to do so.
static const auxid_t null_auxid
To signal no aux data item.
CxxUtils::RefCountedPtr< T > DataObjectSharedPtr
SG::auxid_t getDynamicAuxID(const std::type_info &ti, const std::string &name, const std::string &elementTypeName, const std::string &branch_type_name, bool standalone, SG::auxid_t linked_auxid)
Find the auxid for a dynamic branch.
AuxStoreInternal(bool standalone=false)
An auxiliary data store that holds data internally.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
size_t auxid_t
Identifier for a particular aux data item.
static constexpr CLID ID()