schema_salad.python_codegen
Python code generator for a given schema salad definition.
Attributes
Classes
Generation of Python code for a given Schema Salad definition. |
Functions
|
Use black to format this snippet. |
Module Contents
- schema_salad.python_codegen.black = None
- schema_salad.python_codegen.prims
- schema_salad.python_codegen.fmt(text, indent)
Use black to format this snippet.
:param indent the indent level for the current context
- class schema_salad.python_codegen.PythonCodeGen(out, copyright, parser_info, salad_version)
Bases:
digraph inheritancefbba5b07c9 { bgcolor=transparent; rankdir=LR; size="8.0, 12.0"; "CodeGenBase" [URL="../codegen_base/index.html#schema_salad.codegen_base.CodeGenBase",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Abstract base class for schema salad code generators."]; "PythonCodeGen" [URL="#schema_salad.python_codegen.PythonCodeGen",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Generation of Python code for a given Schema Salad definition."]; "CodeGenBase" -> "PythonCodeGen" [arrowsize=0.5,style="setlinewidth(0.5)"]; }schema_salad.codegen_base.CodeGenBase
Generation of Python code for a given Schema Salad definition.
- out
- current_class_is_abstract = False
- serializer
- idfield = ''
- copyright
- parser_info
- salad_version
- static safe_name(name)
Generate a safe version of the given name.
- prologue()
Trigger to generate the prolouge code.
- Return type:
None
- begin_class(classname, extends, doc, abstract, field_names, idfield, optional_fields)
Produce the header for the given class.
- Parameters:
classname (str)
extends (collections.abc.MutableSequence[str])
doc (str)
abstract (bool)
field_names (collections.abc.MutableSequence[str])
idfield (str)
- Return type:
None
- end_class(classname, field_names)
Signal that we are done with this class.
- type_loader(type_declaration, container=None, no_link_check=None)
Parse the given type declaration and declare its components.
- declare_id_field(name, fieldtype, doc, optional)
Output the code to handle the given ID field.
- Parameters:
name (str)
fieldtype (schema_salad.codegen_base.TypeDef)
doc (Optional[str])
optional (bool)
- Return type:
None
- declare_field(name, fieldtype, doc, optional, subscope)
Output the code to load the given field.
- Parameters:
name (str)
fieldtype (schema_salad.codegen_base.TypeDef)
doc (Optional[str])
optional (bool)
subscope (Optional[str])
- Return type:
None
- uri_loader(inner, scoped_id, vocab_term, ref_scope, no_link_check=None)
Construct the TypeDef for the given URI loader.
- idmap_loader(field, inner, map_subject, map_predicate)
Construct the TypeDef for the given mapped ID loader.
- typedsl_loader(inner, ref_scope)
Construct the TypeDef for the given DSL loader.
- Parameters:
ref_scope (Optional[int])
- Return type:
- secondaryfilesdsl_loader(inner)
Construct the TypeDef for secondary files.
- Parameters:
- Return type:
- epilogue(root_loader)
Trigger to generate the epilouge code.
- Parameters:
root_loader (schema_salad.codegen_base.TypeDef)
- Return type:
None