]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/AliRawReaderMemory.cxx
Adding predefiend BB aleph paramerization
[u/mrichter/AliRoot.git] / RAW / AliRawReaderMemory.cxx
index caa36603c02ec59504a72aa2b92294bfabb75c90..9ede85b08f7da0fbdd7cda25e40d0c65e24e4eb9 100644 (file)
@@ -29,37 +29,26 @@ ClassImp(AliRawReaderMemory)
 
 
 AliRawReaderMemory::AliRawReaderMemory() :
-  fBuffer(NULL),
-  fBufferSize(0),
   fPosition(0),
-  fEquipmentId(-1)
+  fBuffers(),
+  fCurrent(0)
 {
 // create an object to read digits from
 // the given memory location
-
-  fHeader = new AliRawDataHeader;
-
-  fEventNumber = 0;
 }
 
 AliRawReaderMemory::AliRawReaderMemory(UChar_t* memory, UInt_t size) :
-  fBuffer(memory),
-  fBufferSize(size),
   fPosition(0),
-  fEquipmentId(-1)
+  fBuffers(),
+  fCurrent(0)
 {
 // create an object to read digits from the given memory
-
-  fHeader = new AliRawDataHeader;
-
-  fEventNumber = 0;
+  fBuffers.push_back(AliRRMBuffer(memory, size, -1));
 }
 
 AliRawReaderMemory::~AliRawReaderMemory()
 {
 // close the input memory
-
-  delete fHeader;
 }
 
 void AliRawReaderMemory::RequireHeader(Bool_t required)
@@ -78,26 +67,61 @@ Bool_t AliRawReaderMemory::ReadHeader()
 // read a data header at the current buffer position
 // returns kFALSE if the mini header could not be read
 
-  if (!fBuffer) return kFALSE;
+  Bool_t result=kFALSE;
+  if (fCurrent>=fBuffers.size()) return kFALSE;
+
   do {
-    if ( fPosition+fCount+sizeof(AliRawDataHeader) > fBufferSize ) return kFALSE;
-
-    memcpy( fHeader, fBuffer+fPosition+fCount, sizeof(AliRawDataHeader) );
-    if (fHeader->fSize == 0) {
-      Warning("ReadHeader",
-             "Missing raw data header! Using the size of the memory buffer instead (%d) !",
-             fBufferSize - fPosition - fCount);
-       fHeader->fSize = fBufferSize - fPosition - fCount;
+  result=kFALSE;
+  do {
+    if (fBuffers[fCurrent].GetEquipmentId() == -1)
+      {
+       Warning("ReadHeader", "The equipment ID is not set for the DDL memory buffer.");
+      }
+    if (!fBuffers[fCurrent].GetBuffer()) break;
+
+    // Check if we would not read past the end of the buffer.
+    if ( fPosition+fCount >= fBuffers[fCurrent].GetBufferSize() ) break;
+    
+    fHeader = reinterpret_cast<AliRawDataHeader*>(fBuffers[fCurrent].GetBuffer()+fPosition+fCount);
+    
+    // Check that the header is sane, that is the size does not go past the buffer.
+    // Otherwise try again at the next word location.
+    while (1) {
+    if ( ( (fHeader->fSize == 0) || 
+          ((Int_t)fPosition + fCount + (Int_t)fHeader->fSize > (Int_t)fBuffers[fCurrent].GetBufferSize() ) ) 
+        && fHeader->fSize != 0xFFFFFFFF) {
+
+      if (fPosition + sizeof(UInt_t) <= fBuffers[fCurrent].GetBufferSize()) {
+        fPosition += sizeof(UInt_t);
+        continue;
+      } else {
+        Error("ReadHeader", "Could not find a valid DDL header!");
+        return kFALSE;
       }
-    fPosition += fCount + sizeof(AliRawDataHeader);
+    } else {
+      fPosition += fCount + sizeof(AliRawDataHeader);
+    }
+    break;
+    }
 
     if (fHeader->fSize != 0xFFFFFFFF) {
-      // Check for fHeader->fSize < sizeof(AliRawDataHeader) ????
       fCount = fHeader->fSize - sizeof(AliRawDataHeader);
     } else {
-      fCount = fBufferSize-fPosition;
+      fCount = fBuffers[fCurrent].GetBufferSize() - sizeof(AliRawDataHeader);
     }
-  } while (!IsSelected());
+  } while (!(result=IsSelected()) && OpenNextBuffer());
+  } while (!result && OpenNextBuffer());
+
+  return result;
+}
+
+Bool_t AliRawReaderMemory::OpenNextBuffer()
+{
+  // increment to next buffer
+  fPosition=0;
+  fCount=0;
+  if (fCurrent>=fBuffers.size()) return kFALSE;
+  if (++fCurrent>=fBuffers.size()) return kFALSE;
   return kTRUE;
 }
 
@@ -109,22 +133,36 @@ Bool_t AliRawReaderMemory::ReadNextData(UChar_t*& data)
   while (fCount == 0) {
     if (!ReadHeader()) return kFALSE;
   }
+
+  if(fCount < 0){
+    Error("ReadNextData","Cannot read data, payload is negative");
+    return kFALSE;
+  }
+
   UInt_t currentPosition = fPosition;
   fPosition += fCount;
   fCount = 0;
 
-  data = fBuffer+currentPosition;
+  if(fBuffers[fCurrent].GetBufferSize()<currentPosition){
+    Error("ReadNextData","Current position exceeds buffersize.");
+    return kFALSE;
+  }
+  data = fBuffers[fCurrent].GetBuffer()+currentPosition;
   return kTRUE;
 }
 
 Bool_t AliRawReaderMemory::ReadNext(UChar_t* data, Int_t size)
 {
 // reads the next block of data at the current buffer position
+// but does not shift to the next equipment. The next equipment
+// must be activated by calling ReadHeader
 // returns kFALSE if the data could not be read
 
-  if ( fBufferSize-fPosition < (UInt_t)size ) return kFALSE;
+  
+  if (fCurrent>=fBuffers.size()) return kFALSE;
+  if ( fBuffers[fCurrent].GetBufferSize()-fPosition < (UInt_t)size ) return kFALSE;
 
-  memcpy( data, fBuffer+fPosition, size );
+  memcpy( data, fBuffers[fCurrent].GetBuffer()+fPosition, size );
   fCount -= size;
   fPosition += size;
   return kTRUE;
@@ -135,30 +173,134 @@ Bool_t AliRawReaderMemory::Reset()
 {
 // reset the current position in the buffer to the beginning of the curevent
 
+  fHeader = NULL;
   fCount = 0;
   fPosition = 0;
+  fCurrent=0;
   return kTRUE;
 }
 
 Bool_t AliRawReaderMemory::NextEvent()
 {
 // each memory buffer always contains only one event
- return kFALSE; 
+  if (fEventNumber < 0) {
+    fEventNumber++;
+    return kTRUE;
+  }
+  else
+    return kFALSE; 
 }
 
 Bool_t AliRawReaderMemory::RewindEvents()
 {
 // reset the event counter
+  fEventNumber = -1;
 
   return Reset();
 }
 
 Bool_t AliRawReaderMemory::SetMemory( UChar_t* memory, ULong_t size )
 {
-  fBuffer = memory;
-  fBufferSize = size;
+  // SetMemory function kept for backward compatibility, only allowed
+  // if no blocks have been added so far 
+  if (!memory || size<=0) return kFALSE;
+  if (fBuffers.size()>1 || (fBuffers.size()==1 && fPosition==0 && fCurrent==0)) {
+    Error("SetMemory","can not SetMemory for multiple buffers, use AddBuffer(...)");
+    return kFALSE;
+  }
+  if (fBuffers.size()==1) fBuffers.pop_back();
+  fBuffers.push_back(AliRRMBuffer(memory, size, -1));
+  fCurrent=0;
+  fHeader = NULL;
   fCount = 0;
   fPosition = 0;
-  return (fBuffer && fBufferSize>0) ? kTRUE : kFALSE;
+  return kTRUE;
+}
+
+void  AliRawReaderMemory::SetEquipmentID(Int_t id)
+{
+  // SetMemory function kept for backward compatibility, only allowed
+  // if no blocks have been added so far, set equipment id of the first
+  // buffer
+  if (fBuffers.size()>1) {
+    Error("SetEquipmentID", "can not SetEquipmentID for multiple buffers, use AddBuffer(...)");
+    return;
+  }
+  if (fBuffers.size()==0 || fCurrent>=fBuffers.size()) {
+    Error("SetEquipmentID", "no block available to set equipment id");
+    return;    
+  }
+  fBuffers[fCurrent].SetEquipmentId(id);
 }
 
+Int_t AliRawReaderMemory::GetEquipmentSize() const
+{
+  // get the size of the equipment, that is payload + CDH
+  if (fCurrent>=fBuffers.size()) return 0;
+  return fBuffers[fCurrent].GetBufferSize();
+}
+
+Int_t AliRawReaderMemory::GetEquipmentId() const
+{
+  // get the current equipment id
+  if (fCurrent>=fBuffers.size()) return -1;
+  return fBuffers[fCurrent].GetEquipmentId();
+}
+
+Bool_t AliRawReaderMemory::AddBuffer(UChar_t* memory, ULong_t size, Int_t equipmentId )
+{
+  // Add a buffer to the list
+  if (!memory || size<=0 || equipmentId<0 ) return kFALSE;
+  fBuffers.push_back(AliRRMBuffer(memory, size, equipmentId));
+  return kTRUE;
+}
+
+void AliRawReaderMemory::ClearBuffers()
+{
+  // Clear the buffer list
+  fBuffers.clear();
+  Reset();
+}
+
+AliRawReaderMemory::AliRRMBuffer::AliRRMBuffer()
+  :
+  fBuffer(NULL),
+  fBufferSize(0),
+  fEquipmentId(-1)
+{
+  // ctor
+}
+
+AliRawReaderMemory::AliRRMBuffer::AliRRMBuffer(UChar_t* pBuffer, UInt_t bufferSize, Int_t equipmentId)
+  :
+  fBuffer(pBuffer),
+  fBufferSize(bufferSize),
+  fEquipmentId(equipmentId)
+{
+  // ctor
+}
+
+AliRawReaderMemory::AliRRMBuffer::~AliRRMBuffer()
+{
+  // dtor
+}
+
+AliRawReaderMemory::AliRRMBuffer::AliRRMBuffer(const AliRRMBuffer& src)
+  :
+  fBuffer(src.fBuffer),
+  fBufferSize(src.fBufferSize),
+  fEquipmentId(src.fEquipmentId)
+{
+  // copy ctor, there are no buffers allocated internally, pointers
+  // are just copied
+}
+
+AliRawReaderMemory::AliRRMBuffer& AliRawReaderMemory::AliRRMBuffer::operator=(const AliRRMBuffer& src)
+{
+  // assignment op
+  if(&src == this) return *this;
+  fBuffer=src.fBuffer;
+  fBufferSize=src.fBufferSize;
+  fEquipmentId=src.fEquipmentId;
+  return *this;
+}