1 #ifndef artdaq_core_Data_ContainerFragmentLoader_hh
2 #define artdaq_core_Data_ContainerFragmentLoader_hh
13 #include "artdaq-core/Data/Fragment.hh"
14 #include "artdaq-core/Data/ContainerFragment.hh"
21 class ContainerFragmentLoader;
96 static size_t words_to_frag_words_(
size_t nWords);
98 void addSpace_(
size_t bytes);
100 uint8_t* dataBegin_() {
return reinterpret_cast<uint8_t*
>(&*artdaq_Fragment_.
dataBegin()); }
101 void* dataEnd_() {
return reinterpret_cast<void*
>(dataBegin_() +
lastFragmentIndex()); }
106 , artdaq_Fragment_(f)
119 if (artdaq_Fragment_.
size() !=
123 std::cerr <<
"artdaq_Fragment size: " << artdaq_Fragment_.
size() << std::endl;
127 throw cet::exception(
"ContainerFragmentLoader: Raw artdaq::Fragment object size suggests it does not consist of its own header + the ContainerFragment::Metadata object");
131 inline size_t artdaq::ContainerFragmentLoader::words_to_frag_words_(
size_t nWords)
133 size_t mod = nWords % words_per_frag_word_();
135 nWords / words_per_frag_word_() + 1 :
136 nWords / words_per_frag_word_();
139 inline void artdaq::ContainerFragmentLoader::addSpace_(
size_t bytes)
142 artdaq_Fragment_.resizeBytes(bytes + currSize);
143 TRACE(4,
"ContainerFragmentLoader::addSpace_: dataEnd_ is now at %p", dataEnd_());
148 TRACE(4,
"ContainerFragmentLoader::addFragment: Adding Fragment with payload size %llu to Container", (
unsigned long long)frag.
dataSizeBytes());
150 else if (frag.
type() != metadata()->fragment_type)
152 throw cet::exception(
"ContainerFragmentLoader::addFragment: Trying to add a fragment of different type than what's already been added!");
154 TRACE(4,
"ContainerFragmentLoader::addFragment: Payload Size is %llu, lastFragmentIndex is %llu, and frag.size is %llu", (
unsigned long long)artdaq_Fragment_.dataSizeBytes(), (
unsigned long long)lastFragmentIndex(), (
unsigned long long)frag.
sizeBytes());
155 if (artdaq_Fragment_.dataSizeBytes() < lastFragmentIndex() + frag.
sizeBytes())
160 TRACE(4,
"ContainerFragmentLoader::addFragment, copying %llu bytes from %p to %p", (
long long unsigned int)frag.
sizeBytes(), (
void*)frag.
headerAddress(), dataEnd_());
162 metadata()->index[block_count()] = lastFragmentIndex() + frag.
sizeBytes();
163 metadata()->block_count++;
173 for (
auto& frag : frags)
175 addFragment((*frag));
std::unique_ptr< Fragment > FragmentPtr
A std::unique_ptr to a Fragment object.
The artdaq::ContainerFragment class represents a Fragment which contains other Fragments.
std::size_t dataSizeBytes() const
Return the number of bytes in the data payload. This does not include the number of bytes in the head...
void setSequenceID(sequence_id_t sequence_id)
Sets the Sequence ID of the Fragment.
void setSystemType(type_t stype)
Sets the type of the Fragment, checking that it is a valid system type.
std::size_t size() const
Gets the size of the Fragment, from the Fragment header.
void set_fragment_type(Fragment::type_t type)
Sets the type of Fragment which this ContainerFragment should contain.
A Read-Write version of the ContainerFragment, used for filling ContainerFragment objects with other ...
static constexpr type_t EmptyFragmentType
Copy EmptyFragmentType from RawFragmentHeader.
std::size_t sizeBytes() const
Size of vals_ vector ( header + (optional) metadata + payload) in bytes.
detail::RawFragmentHeader::type_t type_t
typedef for type_t from RawFragmentHeader
static const int CONTAINER_FRAGMENT_COUNT_MAX
The maximum capacity of the ContainerFragment (in fragments)
size_t lastFragmentIndex() const
Returns the offset of the last Fragment in the ContainerFragment.
Metadata * metadata()
Get the ContainerFragment metadata (includes information about the location of Fragment objects withi...
void addFragment(artdaq::Fragment &frag)
Add a Fragment to the ContainerFragment by reference.
iterator dataBegin()
Return an iterator to the beginning of the data payload (after header and metadata) ...
QuickVec< RawDataType >::value_type value_type
Alias value_type type from QuickVec<RawDataType>
static constexpr type_t ContainerFragmentType
Copy ContainerFragmentType from RawFragmentHeader.
ContainerFragmentLoader(Fragment &f)
Constructs the ContainerFragmentLoader.
void setMetadata(const T &md)
Set the metadata in the Fragment to the contents of the specified structure. This throws an exception...
type_t type() const
Type of the Fragment, from the Fragment header.
RawDataType * metadataAddress()
Get the address of the metadata. For internal use only, use metadata() instead.
std::list< FragmentPtr > FragmentPtrs
A std::list of FragmentPtrs.
bool hasMetadata() const
Test whether this Fragment has metadata.
A Fragment contains the data from one piece of the DAQ system for one event The artdaq::Fragment is t...
void set_missing_data(bool isDataMissing)
Sets the missing_data flag.
void addFragments(artdaq::FragmentPtrs &frags)
Add a collection of Fragment objects to the ContainerFragment.
RawDataType * headerAddress()
Gets the address of the header.