twisted.names._rfc1982.SerialNumber(FancyStrMixin, object) class documentationtwisted.names._rfc1982
          View Source
          (View In Hierarchy)
        
      An RFC1982 Serial Number.
This class implements RFC1982 DNS Serial Number Arithmetic.
SNA is used in DNS and specifically in DNSSEC as defined in RFC4034 in the DNSSEC Signature Expiration and Inception Fields.
| See Also | https://tools.ietf.org/html/rfc1982 | |
| https://tools.ietf.org/html/rfc4034 | ||
| Method | __init__ | Construct an SerialNumberinstance. | 
| Method | __str__ | Return a string representation of this SerialNumberinstance. | 
| Method | __int__ | |
| Method | __eq__ | Allow rich equality comparison with another SerialNumberinstance. | 
| Method | __ne__ | Allow rich equality comparison with another SerialNumberinstance. | 
| Method | __lt__ | Allow less than comparison with another SerialNumberinstance. | 
| Method | __gt__ | Allow greater than comparison with another SerialNumberinstance. | 
| Method | __le__ | Allow less than or equal comparison with another SerialNumberinstance. | 
| Method | __ge__ | Allow greater than or equal comparison with another SerialNumberinstance. | 
| Method | __add__ | Allow addition with another SerialNumberinstance. | 
| Method | __hash__ | Allow SerialNumberinstances to be hashed for use asdictkeys. | 
| Class Method | fromRFC4034DateString | Create an SerialNumberinstance from a date string in format 'YYYYMMDDHHMMSS' described in RFC4034 3.2. | 
| Method | toRFC4034DateString | Calculate a date by treating the current SerialNumbervalue as a UNIX timestamp and return a date string in the format described 
in RFC4034 3.2. | 
| Instance Variable | _serialBits | See serialBitsof__init__. | 
| Instance Variable | _number | See numberof__init__. | 
| Instance Variable | _modulo | The value at which wrapping will occur. | 
| Instance Variable | _halfRing | Half _modulo. If anotherSerialNumbervalue is larger than this, it would lead to a wrapped value which is larger
than the first and comparisons are therefore ambiguous. | 
| Instance Variable | _maxAdd | Half _moduloplus 1. If anotherSerialNumbervalue is larger than this, it would lead to a wrapped value which is larger
than the first. Comparisons with the original value would therefore be 
ambiguous. | 
| Method | _convertOther | Check that a foreign object is suitable for use in the comparison or 
arithmetic magic methods of this SerialNumberinstance. RaiseTypeErrorif not. | 
_modulo. If another SerialNumber
value is larger than this, it would lead to a wrapped value which is larger
than the first and comparisons are therefore ambiguous.
  _modulo plus 1. If another SerialNumber
value is larger than this, it would lead to a wrapped value which is larger
than the first. Comparisons with the original value would therefore be 
ambiguous.
  Construct an SerialNumber
instance.
| Parameters | number | An intwhich will be stored as the modulonumber % 2 ^ serialBits(type:int) | 
| serialBits | The size of the serial number space. The power of two which results in one 
larger than the largest integer corresponding to a serial number value. (type: int) | 
Check that a foreign object is suitable for use in the comparison or 
arithmetic magic methods of this SerialNumber
instance. Raise TypeError
if not.
| Parameters | other | The foreign objectto be checked. | 
| Returns | otherafter compatibility checks and possible coercion. | |
| Raises | TypeErrorifotheris not compatible. | |
Return a string representation of this SerialNumber
instance.
| Returns | (type: nativeString) | |
Allow rich equality comparison with another SerialNumber
instance.
Allow rich equality comparison with another SerialNumber
instance.
Allow greater than comparison with another SerialNumber
instance.
| Returns | (type: bool) | |
Allow less than or equal comparison with another SerialNumber
instance.
| Returns | (type: bool) | |
Allow greater than or equal comparison with another SerialNumber
instance.
| Returns | (type: bool) | |
Allow addition with another SerialNumber
instance.
Serial numbers may be incremented by the addition of a positive integer n, where n is taken from the range of integers [0 .. (2^(SERIAL_BITS - 1) - 1)]. For a sequence number s, the result of such an addition, s', is defined as
s' = (s + n) modulo (2 ^ SERIAL_BITS)
where the addition and modulus operations here act upon values that are non-negative values of unbounded size in the usual ways of integer arithmetic.
Addition of a value outside the range [0 .. (2^(SERIAL_BITS - 1) - 1)] is undefined.
| Returns | (type: SerialNumber) | |
| Raises | ArithmeticErrorifotheris more than_maxAddie more than half 
the maximum value of this serial number. | |
| See Also | http://tools.ietf.org/html/rfc1982#section-3.1 | |
Allow SerialNumber
instances to be hashed for use as dict
keys.
| Returns | (type: int) | |
Create an SerialNumber
instance from a date string in format 'YYYYMMDDHHMMSS' described in RFC4034 3.2.
The SerialNumber
instance stores the date as a 32bit UNIX timestamp.
| Parameters | utcDateString | A UTC date/time string of format YYMMDDhhmmss which will be 
converted to seconds since the UNIX epoch. (type: unicode) | 
| Returns | An SerialNumberinstance containing the supplied date as a 32bit UNIX timestamp. | |
| See Also | https://tools.ietf.org/html/rfc4034#section-3.1.5 | |
Calculate a date by treating the current SerialNumber
value as a UNIX timestamp and return a date string in the format described 
in RFC4034 3.2.
| Returns | The date string. | |