runtimepy.net.http.state
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/net/http/state.py

A module implementing an HTTP-header processing state interface.

 
Classes
       
builtins.object
HeaderProcessingState

 
class HeaderProcessingState(builtins.object)
    HeaderProcessingState(lines: list[str], line: str) -> None
 
A container for header-related processing state.
 
  Methods defined here:
__eq__(self, other)
Return self==value.
__init__(self, lines: list[str], line: str) -> None
Initialize self.  See help(type(self)) for accurate signature.
__repr__(self)
Return repr(self).
service(self, buffer: vcorelib.io.fifo.ByteFifo, kind: type[~T]) -> Optional[~T]
Continue processing the input fifo as if it contains request-header
data.

Static methods defined here:
create() -> 'HeaderProcessingState'
Create a default instance.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes defined here:
__annotations__ = {'line': <class 'str'>, 'lines': list[str]}
__dataclass_fields__ = {'line': Field(name='line',type=<class 'str'>,default=<da...appingproxy({}),kw_only=False,_field_type=_FIELD), 'lines': Field(name='lines',type=list[str],default=<datac...appingproxy({}),kw_only=False,_field_type=_FIELD)}
__dataclass_params__ = _DataclassParams(init=True,repr=True,eq=True,ord...rue,kw_only=False,slots=False,weakref_slot=False)
__hash__ = None
__match_args__ = ('lines', 'line')

 
Data
        DEFAULT_ENCODING = 'utf-8'
Optional = typing.Optional
T = ~T