Bitcoin ABC  0.28.12
P2P Digital Currency
Public Member Functions | Static Public Member Functions | Static Public Attributes | Static Private Member Functions | Private Attributes | List of all members
CScriptNum Class Reference

#include <script.h>

Public Member Functions

 CScriptNum (const int64_t &n)
 
 CScriptNum (const std::vector< uint8_t > &vch, bool fRequireMinimal, const size_t nMaxNumSize=MAXIMUM_ELEMENT_SIZE)
 
bool operator== (const int64_t &rhs) const
 
bool operator!= (const int64_t &rhs) const
 
bool operator<= (const int64_t &rhs) const
 
bool operator< (const int64_t &rhs) const
 
bool operator>= (const int64_t &rhs) const
 
bool operator> (const int64_t &rhs) const
 
bool operator== (const CScriptNum &rhs) const
 
bool operator!= (const CScriptNum &rhs) const
 
bool operator<= (const CScriptNum &rhs) const
 
bool operator< (const CScriptNum &rhs) const
 
bool operator>= (const CScriptNum &rhs) const
 
bool operator> (const CScriptNum &rhs) const
 
CScriptNum operator+ (const int64_t &rhs) const
 
CScriptNum operator- (const int64_t &rhs) const
 
CScriptNum operator+ (const CScriptNum &rhs) const
 
CScriptNum operator- (const CScriptNum &rhs) const
 
CScriptNum operator/ (const int64_t &rhs) const
 
CScriptNum operator/ (const CScriptNum &rhs) const
 
CScriptNum operator% (const int64_t &rhs) const
 
CScriptNum operator% (const CScriptNum &rhs) const
 
CScriptNumoperator+= (const CScriptNum &rhs)
 
CScriptNumoperator-= (const CScriptNum &rhs)
 
CScriptNum operator& (const int64_t &rhs) const
 
CScriptNum operator& (const CScriptNum &rhs) const
 
CScriptNumoperator&= (const CScriptNum &rhs)
 
CScriptNum operator- () const
 
CScriptNumoperator= (const int64_t &rhs)
 
CScriptNumoperator+= (const int64_t &rhs)
 
CScriptNumoperator-= (const int64_t &rhs)
 
CScriptNumoperator&= (const int64_t &rhs)
 
int getint () const
 
std::vector< uint8_t > getvch () const
 

Static Public Member Functions

static bool IsMinimallyEncoded (const std::vector< uint8_t > &vch, const size_t nMaxNumSize=CScriptNum::MAXIMUM_ELEMENT_SIZE)
 
static bool MinimallyEncode (std::vector< uint8_t > &data)
 
static std::vector< uint8_t > serialize (const int64_t &value)
 

Static Public Attributes

static const size_t MAXIMUM_ELEMENT_SIZE = 4
 Numeric opcodes (OP_1ADD, etc) are restricted to operating on 4-byte integers. More...
 

Static Private Member Functions

static int64_t set_vch (const std::vector< uint8_t > &vch)
 

Private Attributes

int64_t m_value
 

Detailed Description

Definition at line 216 of file script.h.

Constructor & Destructor Documentation

◆ CScriptNum() [1/2]

CScriptNum::CScriptNum ( const int64_t &  n)
inlineexplicit

Definition at line 229 of file script.h.

Here is the caller graph for this function:

◆ CScriptNum() [2/2]

CScriptNum::CScriptNum ( const std::vector< uint8_t > &  vch,
bool  fRequireMinimal,
const size_t  nMaxNumSize = MAXIMUM_ELEMENT_SIZE 
)
inlineexplicit

Definition at line 231 of file script.h.

Here is the call graph for this function:

Member Function Documentation

◆ getint()

int CScriptNum::getint ( ) const
inline

Definition at line 352 of file script.h.

Here is the caller graph for this function:

◆ getvch()

std::vector<uint8_t> CScriptNum::getvch ( ) const
inline

Definition at line 361 of file script.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ IsMinimallyEncoded()

bool CScriptNum::IsMinimallyEncoded ( const std::vector< uint8_t > &  vch,
const size_t  nMaxNumSize = CScriptNum::MAXIMUM_ELEMENT_SIZE 
)
static

Definition at line 299 of file script.cpp.

Here is the caller graph for this function:

◆ MinimallyEncode()

bool CScriptNum::MinimallyEncode ( std::vector< uint8_t > &  data)
static

Definition at line 327 of file script.cpp.

Here is the caller graph for this function:

◆ operator!=() [1/2]

bool CScriptNum::operator!= ( const CScriptNum rhs) const
inline

Definition at line 258 of file script.h.

Here is the call graph for this function:

◆ operator!=() [2/2]

bool CScriptNum::operator!= ( const int64_t &  rhs) const
inline

Definition at line 249 of file script.h.

Here is the caller graph for this function:

◆ operator%() [1/2]

CScriptNum CScriptNum::operator% ( const CScriptNum rhs) const
inline

Definition at line 297 of file script.h.

Here is the call graph for this function:

◆ operator%() [2/2]

CScriptNum CScriptNum::operator% ( const int64_t &  rhs) const
inline

Definition at line 294 of file script.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator&() [1/2]

CScriptNum CScriptNum::operator& ( const CScriptNum rhs) const
inline

Definition at line 311 of file script.h.

Here is the call graph for this function:

◆ operator&() [2/2]

CScriptNum CScriptNum::operator& ( const int64_t &  rhs) const
inline

Definition at line 308 of file script.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator&=() [1/2]

CScriptNum& CScriptNum::operator&= ( const CScriptNum rhs)
inline

Definition at line 315 of file script.h.

◆ operator&=() [2/2]

CScriptNum& CScriptNum::operator&= ( const int64_t &  rhs)
inline

Definition at line 347 of file script.h.

◆ operator+() [1/2]

CScriptNum CScriptNum::operator+ ( const CScriptNum rhs) const
inline

Definition at line 280 of file script.h.

Here is the call graph for this function:

◆ operator+() [2/2]

CScriptNum CScriptNum::operator+ ( const int64_t &  rhs) const
inline

Definition at line 274 of file script.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator+=() [1/2]

CScriptNum& CScriptNum::operator+= ( const CScriptNum rhs)
inline

Definition at line 301 of file script.h.

◆ operator+=() [2/2]

CScriptNum& CScriptNum::operator+= ( const int64_t &  rhs)
inline

Definition at line 329 of file script.h.

Here is the call graph for this function:

◆ operator-() [1/3]

CScriptNum CScriptNum::operator- ( ) const
inline

Definition at line 319 of file script.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator-() [2/3]

CScriptNum CScriptNum::operator- ( const CScriptNum rhs) const
inline

Definition at line 283 of file script.h.

Here is the call graph for this function:

◆ operator-() [3/3]

CScriptNum CScriptNum::operator- ( const int64_t &  rhs) const
inline

Definition at line 277 of file script.h.

Here is the call graph for this function:

◆ operator-=() [1/2]

CScriptNum& CScriptNum::operator-= ( const CScriptNum rhs)
inline

Definition at line 304 of file script.h.

◆ operator-=() [2/2]

CScriptNum& CScriptNum::operator-= ( const int64_t &  rhs)
inline

Definition at line 338 of file script.h.

Here is the call graph for this function:

◆ operator/() [1/2]

CScriptNum CScriptNum::operator/ ( const CScriptNum rhs) const
inline

Definition at line 290 of file script.h.

Here is the call graph for this function:

◆ operator/() [2/2]

CScriptNum CScriptNum::operator/ ( const int64_t &  rhs) const
inline

Definition at line 287 of file script.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator<() [1/2]

bool CScriptNum::operator< ( const CScriptNum rhs) const
inline

Definition at line 264 of file script.h.

Here is the call graph for this function:

◆ operator<() [2/2]

bool CScriptNum::operator< ( const int64_t &  rhs) const
inline

Definition at line 251 of file script.h.

Here is the caller graph for this function:

◆ operator<=() [1/2]

bool CScriptNum::operator<= ( const CScriptNum rhs) const
inline

Definition at line 261 of file script.h.

Here is the call graph for this function:

◆ operator<=() [2/2]

bool CScriptNum::operator<= ( const int64_t &  rhs) const
inline

Definition at line 250 of file script.h.

Here is the caller graph for this function:

◆ operator=()

CScriptNum& CScriptNum::operator= ( const int64_t &  rhs)
inline

Definition at line 324 of file script.h.

◆ operator==() [1/2]

bool CScriptNum::operator== ( const CScriptNum rhs) const
inline

Definition at line 255 of file script.h.

Here is the call graph for this function:

◆ operator==() [2/2]

bool CScriptNum::operator== ( const int64_t &  rhs) const
inline

Definition at line 248 of file script.h.

Here is the caller graph for this function:

◆ operator>() [1/2]

bool CScriptNum::operator> ( const CScriptNum rhs) const
inline

Definition at line 270 of file script.h.

Here is the call graph for this function:

◆ operator>() [2/2]

bool CScriptNum::operator> ( const int64_t &  rhs) const
inline

Definition at line 253 of file script.h.

Here is the caller graph for this function:

◆ operator>=() [1/2]

bool CScriptNum::operator>= ( const CScriptNum rhs) const
inline

Definition at line 267 of file script.h.

Here is the call graph for this function:

◆ operator>=() [2/2]

bool CScriptNum::operator>= ( const int64_t &  rhs) const
inline

Definition at line 252 of file script.h.

Here is the caller graph for this function:

◆ serialize()

static std::vector<uint8_t> CScriptNum::serialize ( const int64_t &  value)
inlinestatic

Definition at line 363 of file script.h.

Here is the caller graph for this function:

◆ set_vch()

static int64_t CScriptNum::set_vch ( const std::vector< uint8_t > &  vch)
inlinestaticprivate

Definition at line 396 of file script.h.

Here is the caller graph for this function:

Member Data Documentation

◆ m_value

int64_t CScriptNum::m_value
private

Definition at line 415 of file script.h.

◆ MAXIMUM_ELEMENT_SIZE

const size_t CScriptNum::MAXIMUM_ELEMENT_SIZE = 4
static

Numeric opcodes (OP_1ADD, etc) are restricted to operating on 4-byte integers.

The semantics are subtle, though: operands must be in the range [-2^31 +1...2^31 -1], but results may overflow (and are valid as long as they are not used in a subsequent numeric operation). CScriptNum enforces those semantics by storing results as an int64 and allowing out-of-range values to be returned as a vector of bytes but throwing an exception if arithmetic is done or the result is interpreted as an integer.

Definition at line 227 of file script.h.


The documentation for this class was generated from the following files: