BOSS
7.1.1
BESIII Offline Software System
Loading...
Searching...
No Matches
SizeCheckIssue.h
Go to the documentation of this file.
1
//Dear emacs, this is -*- c++ -*-
2
3
/**
4
* @file eformat/SizeCheckIssue.h
5
* @author <a href="mailto:
[email protected]
">Andre DOS ANJOS</a>
6
* $Author: zhangy $
7
* $Revision: 1.1.1.1 $
8
* $Date: 2009/06/19 07:35:41 $
9
*
10
* @brief When size checks do not match, this exception must be thrown.
11
*/
12
13
#ifndef EFORMAT_SIZECHECKEX_H
14
#define EFORMAT_SIZECHECKEX_H
15
16
#include "
eformat/Issue.h
"
17
#include <stdint.h>
18
19
namespace
eformat
{
20
21
/**
22
* This exception is supposed to be thrown when the user is looking for a
23
* region of memory not covered inside the buffer area.
24
*/
25
class
SizeCheckIssue
:
public
eformat::Issue
{
26
27
public
:
//interface
28
29
/**
30
* Builds a new size-check exception
31
*
32
* @param context The Error Reporting System context to be used to identify
33
* the spot where this issue was created
34
* @param severity The severity of this issue
35
* @param actual The correct value for the fragment size added up
36
* @param informed The informed value for the fragment size
37
*/
38
SizeCheckIssue
(
const
ers::Context
& context,
ers::severity_t
severity
,
39
uint32_t
actual
, uint32_t
informed
);
40
41
42
/**
43
* Destructor virtualisation
44
*/
45
virtual
~SizeCheckIssue
() throw() {}
46
47
/**
48
* Access the actual value of the current fragment
49
*/
50
uint32_t
actual
()
const
;
51
52
/**
53
* Access the informed (by the header) value of the current fragment
54
*/
55
uint32_t
informed
(
void
)
const
;
56
57
};
58
59
}
60
61
/**
62
* Simplifies the use of this Issue
63
*
64
* @param actual The actual value for the fragment size added up
65
* @param informed The informed value for the fragment size
66
*/
67
#define EFORMAT_SIZE_CHECK(actual, informed) \
68
eformat::SizeCheckIssue(ERS_HERE, ers::error, actual, informed)
69
70
#endif
/* EFORMAT_SIZECHECKEX_H */
eformat::Issue
Definition
eformat/eformat-00-01-00/eformat/Issue.h:23
eformat::SizeCheckIssue
Definition
SizeCheckIssue.h:25
eformat::SizeCheckIssue::actual
uint32_t actual() const
Definition
SizeCheckIssue.cxx:31
eformat::SizeCheckIssue::SizeCheckIssue
SizeCheckIssue(const ers::Context &context, ers::severity_t severity, uint32_t actual, uint32_t informed)
Definition
SizeCheckIssue.cxx:21
eformat::SizeCheckIssue::~SizeCheckIssue
virtual ~SizeCheckIssue()
Definition
SizeCheckIssue.h:45
eformat::SizeCheckIssue::informed
uint32_t informed(void) const
Definition
SizeCheckIssue.cxx:36
ers::Context
Source context for Issue.
Definition
Context.h:42
ers::Issue::severity
severity_t severity() const
severity_t of the issue
Definition
ers/ers-00-00-03/src/Issue.cxx:602
Issue.h
Defines the base eformat Issue.
eformat
Definition
BadVersionIssue.h:20
ers::severity_t
enum ers::_severity_t severity_t
7.1.1
Event
eformat
eformat-00-01-00
eformat
SizeCheckIssue.h
Generated by
1.12.0