Source code for pcapkit.const.http.frame
# -*- coding: utf-8 -*-
# pylint: disable=line-too-long
"""HTTP/2 Frame Type"""
from aenum import IntEnum, extend_enum
__all__ = ['Frame']
[docs]class Frame(IntEnum):
"""[Frame] HTTP/2 Frame Type"""
_ignore_ = 'Frame _'
Frame = vars()
#: [:rfc:`7540, Section 6.1`]
Frame['DATA'] = 0x00
#: [:rfc:`7540, Section 6.2`]
Frame['HEADERS'] = 0x01
#: [:rfc:`7540, Section 6.3`]
Frame['PRIORITY'] = 0x02
#: [:rfc:`7540, Section 6.4`]
Frame['RST_STREAM'] = 0x03
#: [:rfc:`7540, Section 6.5`]
Frame['SETTINGS'] = 0x04
#: [:rfc:`7540, Section 6.6`]
Frame['PUSH_PROMISE'] = 0x05
#: [:rfc:`7540, Section 6.7`]
Frame['PING'] = 0x06
#: [:rfc:`7540, Section 6.8`]
Frame['GOAWAY'] = 0x07
#: [:rfc:`7540, Section 6.9`]
Frame['WINDOW_UPDATE'] = 0x08
#: [:rfc:`7540, Section 6.10`]
Frame['CONTINUATION'] = 0x09
#: [:rfc:`7838, Section 4`]
Frame['ALTSVC'] = 0x0A
Frame['Unassigned'] = 0x0B
#: [:rfc:`8336`]
Frame['ORIGIN'] = 0x0C
[docs] @staticmethod
def get(key, default=-1):
"""Backport support for original codes."""
if isinstance(key, int):
return Frame(key)
if key not in Frame._member_map_: # pylint: disable=no-member
extend_enum(Frame, key, default)
return Frame[key]
[docs] @classmethod
def _missing_(cls, value):
"""Lookup function used when value is not found."""
if not (isinstance(value, int) and 0x00 <= value <= 0xFF):
raise ValueError('%r is not a valid %s' % (value, cls.__name__))
if 0x0D <= value <= 0xEF:
extend_enum(cls, 'Unassigned [0x%s]' % hex(value)[2:].upper().zfill(2), value)
return cls(value)
if 0xF0 <= value <= 0xFF:
#: [:rfc:`7540`]
extend_enum(cls, 'Reserved for Experimental Use [0x%s]' % hex(value)[2:].upper().zfill(2), value)
return cls(value)
return super()._missing_(value)