CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
OutputFile Class Reference

#include <StreamerFileIO.h>

Public Member Functions

uint32 adler32 () const
 
void close ()
 
uint64 current_offset () const
 
std::string fileName () const
 
 OutputFile (const std::string &name)
 
void set_current_offset (uint64 v)
 
void set_do_adler (bool v)
 
bool write (const char *ptr, size_t n)
 
 ~OutputFile ()
 

Private Attributes

uint32 adlera_
 
uint32 adlerb_
 
uint64 current_offset_
 
bool do_adler_
 
std::string filename_
 
edm::propagate_const< std::shared_ptr< std::ofstream > > ost_
 

Detailed Description

This file contains Class definitions for the Class representing Output (Streamer) file. Class representing Output (Streamer) file.

Definition at line 17 of file StreamerFileIO.h.

Constructor & Destructor Documentation

OutputFile::OutputFile ( const std::string &  name)
explicit

Definition at line 7 of file StreamerFileIO.cc.

References Exception, and ost_.

8  : current_offset_(1),
9  do_adler_(false),
10  adlera_(1),
11  adlerb_(0),
12  ost_(new std::ofstream(name.c_str(), std::ios_base::binary | std::ios_base::out)),
13  filename_(name) {
14  if (!ost_->is_open()) {
15  throw cms::Exception("OutputFile", "OutputFile") << "Error Opening Output File: " << name << "\n";
16  }
17  ost_->rdbuf()->pubsetbuf(nullptr, 0);
18 }
uint64 current_offset_
std::string filename_
edm::propagate_const< std::shared_ptr< std::ofstream > > ost_
uint32 adlerb_
uint32 adlera_
OutputFile::~OutputFile ( )

CTOR, takes file path name as argument

Definition at line 20 of file StreamerFileIO.cc.

References ost_.

20 { ost_->close(); }
edm::propagate_const< std::shared_ptr< std::ofstream > > ost_

Member Function Documentation

uint32 OutputFile::adler32 ( ) const
inline

Definition at line 33 of file StreamerFileIO.h.

References adlera_, and adlerb_.

33 { return (adlerb_ << 16) | adlera_; }
uint32 adlerb_
uint32 adlera_
void OutputFile::close ( void  )
uint64 OutputFile::current_offset ( ) const
inline

Definition at line 32 of file StreamerFileIO.h.

References current_offset_.

32 { return current_offset_; }
uint64 current_offset_
std::string OutputFile::fileName ( ) const
inline

Definition at line 31 of file StreamerFileIO.h.

References filename_.

31 { return filename_; }
std::string filename_
void OutputFile::set_current_offset ( uint64  v)
inline

Definition at line 36 of file StreamerFileIO.h.

References close(), current_offset_, and findQualityFiles::v.

void OutputFile::set_do_adler ( bool  v)
inline

Definition at line 35 of file StreamerFileIO.h.

References do_adler_, and findQualityFiles::v.

bool OutputFile::write ( const char *  ptr,
size_t  n 
)

Definition at line 22 of file StreamerFileIO.cc.

References cms::Adler32(), adlera_, adlerb_, current_offset_, do_adler_, and ost_.

22  {
23  ost_->write(ptr, n);
24  if (!ost_->fail()) {
25  current_offset_ += (uint64)(n);
26  if (do_adler_)
27  cms::Adler32(ptr, n, adlera_, adlerb_);
28  return false;
29  }
30  return true;
31 }
uint64 current_offset_
void Adler32(char const *data, size_t len, uint32_t &a, uint32_t &b)
unsigned long long uint64
Definition: MsgTools.h:14
edm::propagate_const< std::shared_ptr< std::ofstream > > ost_
uint32 adlerb_
uint32 adlera_

Member Data Documentation

uint32 OutputFile::adlera_
private

Definition at line 43 of file StreamerFileIO.h.

Referenced by adler32(), and write().

uint32 OutputFile::adlerb_
private

Definition at line 44 of file StreamerFileIO.h.

Referenced by adler32(), and write().

uint64 OutputFile::current_offset_
private

Definition at line 40 of file StreamerFileIO.h.

Referenced by current_offset(), set_current_offset(), and write().

bool OutputFile::do_adler_
private

Location of current ioptr

Definition at line 42 of file StreamerFileIO.h.

Referenced by set_do_adler(), and write().

std::string OutputFile::filename_
private

Definition at line 47 of file StreamerFileIO.h.

Referenced by fileName().

edm::propagate_const<std::shared_ptr<std::ofstream> > OutputFile::ost_
private

Definition at line 46 of file StreamerFileIO.h.

Referenced by close(), OutputFile(), write(), and ~OutputFile().