TReK Python  5.3.3
Telemetry/Command API
ParameterCollection Class Reference

This class describes a parameter collection. More...

Inherits PacketItem.

Public Member Functions

Initialize / Finalize

Functions handling class initialization and finalization.

def ParameterCollection ( Optional[ParameterCollection] param_collection=None -> def  -> def  -> def ) -> def 
 Class initializer. More...
 
def clone ( -> ParameterCollection  -> def  -> def ) -> def 
 Creates a new instance of the object with the same contents.
 
def copy (copy_from: object -> None  -> def  -> def ) -> def 
 Copies the contents of the provided 'copy_from' ParameterCollection. More...
 
def initialize ( -> None  -> def  -> def ) -> def 
 Initializes the object. More...
 
def load_file (filename: str -> None  -> def  -> def ) -> def 
 Loads the ParameterCollection definition from the specified file. More...
 
def save_file (filename: str -> None  -> def  -> def ) -> def 
 Saves the ParameterCollection definition to the specified file. More...
 
Build and Extract
def build (buffer: bytearray -> int  -> def  -> def ) -> def 
 Builds the parameter collection and places it in the specified buffer. More...
 
def extract (buffer: bytearray, input_length: int, start_bit: int -> int  -> def  -> def ) -> def 
 Extracts all of the parameters in the collection from the specified buffer. More...
 
def get_length_in_bits ( -> int  -> def  -> def ) -> def 
 Gets the length of the parameter collection in bits. More...
 
def get_length_in_bytes ( -> int  -> def  -> def ) -> def 
 Gets the length of the parameter collection in bytes. More...
 
def get_maximum_length_in_bits ( -> int  -> def  -> def ) -> def 
 Returns the maximum length of the ParameterCollection in bits. More...
 
def has_modifiable_data (data_zone_only: bool=True -> bool  -> def  -> def ) -> def 
 Determines if any parameter in the collection is modifiable. More...
 
def has_variable_length_data ( -> bool  -> def  -> def ) -> def 
 Determines if the parameter collection has any variable length data. More...
 
def is_complete ( -> bool  -> def  -> def ) -> def 
 Determines if all parameters have a value. More...
 
def is_modifiable (top_level: bool=True -> bool  -> def  -> def ) -> def 
 Determines if any data is modifiable. More...
 
Parameters

Functions handling parameters.

def add_parameter ( Parameter parameter -> None  -> def  -> def ) -> def 
 Adds the parameter to the collection. More...
 
def find_parameter (name: str -> Parameter  -> def  -> def ) -> def 
 Finds the specified parameter in the collection. More...
 
def get_next_parameter ( -> Optional[Parameter]  -> def  -> def ) -> def 
 Finds the specified parameter in the collection. More...
 
def get_number_of_parameters ( -> int  -> def  -> def ) -> def 
 Returns the number of parameters in the collection. More...
 
def get_parameter_list (full_name: bool=True, mod_only: bool=False -> list[str]  -> def  -> def ) -> def 
 Returns a list of all parameters within a collection. More...
 
def get_sorted_parameter_list (full_name: bool=True, mod_only: bool=False -> list[str]  -> def  -> def ) -> def 
 Returns a sorted list of all parameters within a collection by their start location. More...
 
def remove_parameter (name: str -> None  -> def  -> def ) -> def 
 Removes a parameter from the collection. More...
 
def remove_all_parameters ( -> None  -> def  -> def ) -> def 
 Removes all parameters and associated memory from the collection.
 
def set_start ( -> None  -> def  -> def ) -> def 
 Resets the start location to the first. More...
 
Parameters

Functions handling Parameters.

Packet

Functions handling Packets.

- Public Member Functions inherited from NamedItem
def __eq__ (named_item: object -> bool  -> def  -> def ) -> def 
 Equality operator "==". More...
 
def get_alias ( -> str  -> def  -> def ) -> def 
 Returns the alias of the item. More...
 
def get_name ( -> str  -> def  -> def ) -> def 
 Returns the name of the item. More...
 
def get_long_description ( -> str  -> def  -> def ) -> def 
 Returns the long description of the item. More...
 
def get_short_description ( -> str  -> def  -> def ) -> def 
 Returns the short description of the item. More...
 
def get_user_description ( -> str  -> def  -> def ) -> def 
 Returns the user description of the item. More...
 
def get_owner ( -> str  -> def  -> def ) -> def 
 Returns the owner of the item. More...
 
def set_name (name: str -> None  -> def  -> def ) -> def 
 Sets the name of the item. More...
 
def set_alias (alias: str -> None  -> def  -> def ) -> def 
 Sets the alias of the item. More...
 
def set_short_description (description: str -> None  -> def  -> def ) -> def 
 Sets the short description of the item. More...
 
def set_long_description (description: str -> None  -> def  -> def ) -> def 
 Sets the long description of the item. More...
 
def set_user_description (description: str -> None  -> def  -> def ) -> def 
 Sets the user description of the item. More...
 
def set_owner (owner: str -> None  -> def  -> def ) -> def 
 Sets the owner of the item. More...
 

Detailed Description

This class describes a parameter collection.

ParameterCollection holds parameters that can be built and placed in a packet.

Constructor & Destructor Documentation

◆ ParameterCollection()

(param_collection : Optional[ParameterCollection]