FoSpy.blocks.metadata
This site only contains documentation for the
Block subclasses defined in this
module. For a complete reference of
all functions, classes, and variables, see the full
documentation.
Block Types in this Module
Equipment
Bases: SingleBlock
Methods:
| Name | Description |
|---|---|
TemplateClass |
Create a template for a subclass of |
__delattr__ |
|
__eq__ |
Check equality of two |
__getattr__ |
Check both |
__hash__ |
|
__init__ |
Constructs a SingleBlock object from a dictionary or another |
__new__ |
|
__setattr__ |
Assign an attribute with validation and controlled namespace behavior. |
_assign_and_inject |
Attaches attributes and methods to any value before assigning it as an |
_meta_to_front |
Moves metadata to the front of |
_rename_validators |
Realigns any renamed |
_resolve_relative_path |
Resolves a relative object path string into an object or function. |
_subprocess |
|
_update_src |
|
add_all_calc_routines |
Schedule all available calculation routines. |
add_block |
Adds an unexpected attribute with a validator mapped by |
add_calc_comment |
Add a calculated comment to be injected during serialization. |
add_calc_routine |
Schedules a calculated comment. |
add_comments |
Default behavior to be overwritten when attached to a parent block. |
add_dispatch |
|
build_req_validators |
Builds required keys and validators mapped to subclass. |
build_validators |
Builds expected keys and validators mapped to subclass. |
clear_all_comments |
|
clear_comments |
Clear comments attached to top-level attributes only. |
copy |
Returns a deep-copy of |
default_key_order |
Set to default attribute order for serialization. |
dispatch_subclass |
|
dispatcher |
Decorate a classmethod to dispatch to other subclasses. |
fill_staged_template |
|
find_attachments |
|
find_fileblock |
Finds the parent file object. |
find_tempdir |
Find the parent file object's temporary directory. |
find_temppath |
Find the parent file object's temporary directory path. |
get_id |
Returns an easily recognizable identifier for self. Non-unique. |
get_parent_prop |
|
get_prop_dict |
Returns a dictionary mapping property names to their live object values. |
get_prop_path |
|
get_req_validators |
Overrides class validators with any renamed properties. |
get_validators |
Overrides class validators with any renamed properties. |
has_staged |
|
inject_defaults |
|
inspect |
|
key_to_idx |
Reorder attributes for serialization. |
keys_to_end |
Reorder attributes for serialization. |
keys_to_front |
Reorder attributes for serialization. |
list_avail_routines |
Lists all calc routines available to be added to |
make_template |
Converts |
print_summary |
|
reflex |
|
refresh_attachments |
|
register_dispatch |
Decorate a subclass to be dispatched from a parent class. |
rename_block |
|
rename_dict |
|
serialize |
Return a recursively serialized |
set_dispatch |
|
setup_dispatch |
Decorate a class to dispatch to other classes during construction. |
stage_template |
|
to_json |
Converts |
track_attachments |
|
_aliases = new_als
class-attribute
instance-attribute
_calc_comments = {}
instance-attribute
_calc_routines = []
instance-attribute
_constructed = True
instance-attribute
_id_key = None
class-attribute
instance-attribute
_key_order = []
instance-attribute
_key_overrides = {}
instance-attribute
_meta = SubContainer()
instance-attribute
_reserved = ['ext']
instance-attribute
_sourceDict = blockDict.copy()
instance-attribute
_staged_templates = {}
instance-attribute
dispatch = {}
class-attribute
instance-attribute
dispatch_allow_self = True
class-attribute
instance-attribute
dispatch_default = None
class-attribute
instance-attribute
dispatch_key = None
class-attribute
instance-attribute
ext = SubContainer()
instance-attribute
rename = rename
instance-attribute
TemplateClass(*args)
classmethod
Create a template for a subclass of SingleBlock.
Generates a hybridized subclass of the current block class and
TemplateBlock. Template
subclasses override original expected validators with either a
TemplateField,
TemplateBlock, or
TemplateList depending on the
type of the original validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
str
|
A list of properties to override as template types. |
()
|
Source code in FoSpy/blocks/blocks.py
__delattr__(attr)
__eq__(other, suppress_routine_paths=False)
Check equality of two SingleBlock objects.
Equality is checked by a deep difference of their serialized dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suppress_routine_paths
|
bool
|
Optional flag to still return true if the only differences found are in calculation routine metadata. Calculation routines are for user information only and may not be relevant for equality. |
False
|
Source code in FoSpy/blocks/blocks.py
__getattr__(name)
Check both self and self.ext for attribute before returning.
A matching attribute of self will be returned first, but if self has
no matching attribute, a matching attribute of self.ext can be
returned instead.
Source code in FoSpy/blocks/blocks.py
__init__(blockDict, *args, **kwargs)
Constructs a SingleBlock object from a dictionary or another SingleBlock.
Before construction, the
blockDict is unwrapped into a deep-copied dictionary and scanned to
determine which subclass should be constructed.
SingleBlocks are constructed recursively from an arbitrarily nested
dictionary. After popping the top-level rename
key, to see if any expected properties
have been renamed, all keys identified by
get_req_validators
must be in the top-level. Validation of all properties is delegated to
setattr.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
blockDict
|
dict
|
An arbitrarily nested dictionary mapping attribute names to values. It is possible to pass a blockDict already containing FoSpy objects, but validation routines may fail if objects are not the correct type. Best practice is to serialize all nested objects into lists, dicts, and strings to allow full type coersion. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
A key required by |
TypeError
|
The value passed as |
Source code in FoSpy/blocks/blocks.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
__new__(blockDict, *args, **kwargs)
Source code in FoSpy/blocks/blocks.py
__setattr__(name, value)
Assign an attribute with validation and controlled namespace behavior.
Contract
SingleBlock enforces type correctness and validator execution for
all public attributes defined for its subclass.
Required types and validators are mapped by subclass in
parsing.validation
Comment-mutating methods are attached to every object assigned to an
attribute. (See
add_comments)
Rules
- Private attributes (
_-prefixed) bypass validation. - Attributes with registered validators are processed through the validator before assignment.
- Attributes with required types are coerced by calling the type constructor when necessary.
- Unrecognized attributes can be assigned to a validator mapped to
an alias in
parsing.validation, using the syntaxname="name$alias". - Unrecognized attribute names are redirected as attributes of
self.ext.
Raises:
| Type | Description |
|---|---|
ValueError
|
|
Source code in FoSpy/blocks/blocks.py
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | |
_assign_and_inject(name, value, extended=False)
Attaches attributes and methods to any value before assigning it as an
attribute of self or self.ext.
Attributes Attached to Object
_parent_block: refers to self
Methods Attached to Object
Source code in FoSpy/blocks/blocks.py
_meta_to_front()
Moves metadata to the front of _key_order. Metadata will always be
serialized first, but being elsewhere in the order leads to unexpected
results when moving other keys to desired indices.
Source code in FoSpy/blocks/blocks.py
_rename_validators(validators)
Realigns any renamed attributes with their expected validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
validators
|
dict
|
A dictionary mapping attribute names to validators, returned by
either
|
required |
Source code in FoSpy/blocks/blocks.py
_resolve_relative_path(path)
Resolves a relative object path string into an object or function.
Example:
Source code in FoSpy/blocks/blocks.py
_subprocess(target, args=(), **kwargs)
_update_src()
add_all_calc_routines(recursive=False)
Schedule all available calculation routines.
Adds all available calc_routines to self._calc_routines using
list_avail_routines()
and
add_calc_routine().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
Optional recursion. See |
False
|
Source code in FoSpy/blocks/blocks.py
add_block(block_name, type_alias, value=[])
Adds an unexpected attribute with a validator mapped by type_alias.
Unexpected attributes not requiring a validator can be set directly
without using this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_name
|
str
|
new unexpected attribute name |
required |
type_alias
|
str
|
Alias mapped to the desired validator in
|
required |
Source code in FoSpy/blocks/blocks.py
add_calc_comment(key, comment, calc_id)
Add a calculated comment to be injected during serialization.
WARNING: This function can leave outdated calculations in comments after
serialization. Recommended to use add_calc_routine() instead.
Calculated comments are for user information and will be formatted to be skipped by the parser when reading the file. This is useful for comments that should be recalculated and refreshed during saving/serialization, like weight percentages or summaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
attribute to attach the calculated comment to. Comments appear above their attached attributes in FOS format. |
required |
comment
|
str
|
comment text without comment formatting (don't include // or !) |
required |
calc_id
|
str
|
unique identifier for the calculated comment. If it matches an existing comment (like when refreshing a value), the comment is overwritten |
required |
Source code in FoSpy/blocks/blocks.py
add_calc_routine(path, **kwargs)
Schedules a calculated comment.
Appends a
_calc_routine()-decorated
function to self._calc_routines to be run at
serialization.
Used to add calculated comments that should be refreshed during serialization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
a relative path string that can be resolved into a
|
required |
**kwargs
|
any
|
optional key word arguments to be passed to the function at path. |
{}
|
Raises:
| Type | Description |
|---|---|
TypeError
|
the attr or method at path is not registered as a _calc_routine |
Example:
mySyn.add_calc_routine("materials.add_weight_pcts", typ="reagent")
## mySyn.materials.add_weight_pcts(typ="reagent") is now scheduled
## to run at serialization
Source code in FoSpy/blocks/blocks.py
add_comments(*comments)
Default behavior to be overwritten when attached to a parent block.
If a SingleBlock is stored as an attribute of another SingleBlock,
this method will be overwritten by the parent's __setattr__.
Source code in FoSpy/blocks/blocks.py
add_dispatch(blockDict, dispatch_key, _wrapped=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
build_req_validators()
classmethod
Builds required keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are required
during __init__, and their respective validation routines. Subclasses
are mapped to expected keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Returns:
| Name | Type | Description |
|---|---|---|
merged |
dict
|
Maps required keys to validation routines. Routines may be a class constructor or a func taking one arg. |
Example:
>>> SingleBlock.build_req_validators()
{
"name": str,
"type": str,
"formula": ChemFormula, # class constructor
"supplier": str,
"cas": str,
"form": str,
"env": str,
"ratio": validators.material.ratio # validator function
}
Source code in FoSpy/blocks/blocks.py
build_validators()
classmethod
Builds expected keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are expected
(required or optional), and their respective validation routines.
Subclasses are mapped to keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Source code in FoSpy/blocks/blocks.py
clear_all_comments()
clear_comments()
copy()
Returns a deep-copy of self by serializing and reconstructing.
_calc_comments are not preserved during copy, but _calc_routines are. This prevents mutation of the comments when reconstructing.
Source code in FoSpy/blocks/blocks.py
default_key_order(deep=False)
Set to default attribute order for serialization.
Rearrange attribute order to the default order assigned by
build_validators
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deep
|
bool
|
When true, recursively calls |
False
|
Source code in FoSpy/blocks/blocks.py
dispatch_subclass(*args, **kwargs)
classmethod
dispatcher(dispatch_method)
staticmethod
Decorate a classmethod to dispatch to other subclasses.
Not normally used directly. See
setup_dispatch
decorator.
Source code in FoSpy/blocks/blocks.py
fill_staged_template(prop_name, **kwargs)
Source code in FoSpy/blocks/blocks.py
find_attachments()
Source code in FoSpy/blocks/blocks.py
find_fileblock()
Finds the parent file object.
Walks upward through _parent_block attributes until a
FileBlock instance is found and
returns that instance.
Source code in FoSpy/blocks/blocks.py
find_tempdir()
Find the parent file object's temporary directory.
Finds the temporary directory created by the
FileBlock instance containing this
block as one of its attributes.
Returns:
| Name | Type | Description |
|---|---|---|
tempdir |
tempfile.TemporaryDirectory
|
The temporary directory created by the parent file object |
Source code in FoSpy/blocks/blocks.py
find_temppath()
Find the parent file object's temporary directory path.
Similar to find_tempdir but
returns the corresponding pathlib.Path object instead.
Source code in FoSpy/blocks/blocks.py
get_id()
Returns an easily recognizable identifier for self. Non-unique.
get_parent_prop()
Source code in FoSpy/blocks/blocks.py
get_prop_dict()
Returns a dictionary mapping property names to their live object values.
Source code in FoSpy/blocks/blocks.py
get_prop_path()
Source code in FoSpy/blocks/blocks.py
get_req_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_req_validators,
but uses
_rename_validators
to align any renamed properties with their original validators.
Source code in FoSpy/blocks/blocks.py
get_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_validators,
but uses
_rename_validators
to align any renamed properties with their original validators. Also
adds any optional key overrides added by key$alias syntax.
Returns:
| Name | Type | Description |
|---|---|---|
vals |
dict
|
maps expected keys to validation routines. |
Source code in FoSpy/blocks/blocks.py
has_staged()
inject_defaults(blockDict, *args, **kwargs)
classmethod
inspect()
classmethod
key_to_idx(key, idx)
Reorder attributes for serialization.
Move any attribute name to a specific index in _key_order for
serialization order. The invisible "metadata" key is always refreshed
to the front of the list, so indices are effectively 1-based.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
name of attribute to reorder |
required |
idx
|
int
|
new index in _key_order |
required |
Source code in FoSpy/blocks/blocks.py
keys_to_end(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the end of _key_order to be
serialized last. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
keys_to_front(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the front of _key_order to be
serialized first. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
list_avail_routines(recursive=False, prefix='', abbreviated=False)
Lists all calc routines available to be added to self._calc_routines.
Non-abbreviated calc routine strings can be passed directly to
self.add_calc_routine()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
If True, recursively walks all attributes and appends results
from |
False
|
prefix
|
str
|
Used during recursion to build relative paths |
''
|
abbreviated
|
bool
|
optionally abbreviate recursively repeated routines for similar
objects into one line. This line cannot be passed to
|
False
|
Returns:
| Name | Type | Description |
|---|---|---|
routines |
list
|
list of strings describing _calc_routine-decorated methods.
Non-abbreviated calc routine strings can be passed directly to
|
Example:
mySyn.list_avail_routines()
## returns []
mySyn.list_avail_routines(recursive=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[0].add_MW',
## 'materials[1].add_MW',
## ... 6 total materials with the same calc_routine
## 'materials[5].add_MW'
## ]
mySyn.list_avail_routines(recursive=True, abbreviated=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[i].add_MW; i = [0, 1, 2, 3, 4, 5]'
## ]
Source code in FoSpy/blocks/blocks.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 | |
make_template(template_name, *args)
Converts self into a template of its original subclass.
Returns a copy of self as a template of its original subclass, with
specified fields replaced with template types. See
TemplateClass for
more information on template generation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_name
|
str
|
All templates require an identifying name. |
required |
*args
|
str
|
properties to clear and replace with template types. |
()
|
Source code in FoSpy/blocks/blocks.py
print_summary(mode='cli')
classmethod
reflex(serialize=True, include_temp_names=True, clean=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
refresh_attachments(new_copy=None, overwrite=None, **kwargs)
Source code in FoSpy/blocks/blocks.py
register_dispatch(registry_val, from_parent=None, setup_from_key=None, setup_allow_self=True, inherit_dispatch=False, defaults=None)
classmethod
Decorate a subclass to be dispatched from a parent class.
The subclass will also be decorated with the parent's setup_dispatch to set up its own dispatch parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry_val
|
The value to be found in a dispatched blockDict which will be mapped to the subclass in the parent class's registry. |
required | |
from_parent
|
type[BlockType]
|
The parent class to register the subclass to. Defaults to the class which calls the method, but may be overridden if a non-SingleBlock abstract class is the parent. |
None
|
setup_from_key
|
Passed as from_key to the parents setup_dispatch decorator. |
None
|
|
setup_allow_self
|
Passed as allow_self to the parent's setup_dispatch decorator. |
True
|
|
inherit_dispatch
|
Whether the decorated class should inherit its parent's
|
False
|
|
defaults
|
dict
|
Default values that should be injected into the blockDict when
trying to guarantee dispatching to the registered class.
Defaults to {}. If parent's from_key is public, defaults will be
updated with |
None
|
Source code in FoSpy/blocks/blocks.py
rename_block(old, new)
Source code in FoSpy/blocks/blocks.py
rename_dict()
serialize(keepListType=False, shallow=False, clean=False, **kwargs)
Return a recursively serialized dict representation of self.
Fully serialized SingleBlocks are a single dict that can be passed to
another constructor or emitted into lines for a FOS file. Serialized
values at any nest level are either dicts, lists, or strings to allow
full type-coersion when reconstructing or simplified emission when
writing files.
Serialized dict is deep copied to prevent object mutation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keepListType
|
bool
|
When True, maintains its current FOS printing mode (looped keys or explicit key:value lines), instead of explicit default |
False
|
shallow
|
bool
|
When True, no recursive serialization occurs. Recommended when serialization is used only to inspect top-level keys. |
False
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. Recommended for sending output to other formats like JSON. |
False
|
Private attributes starting with "_" are either skipped or unpacked in special cases:
-
_key_order: attributes are added to the serialized dict in the order they appear in this list. -
_calc_comments: calculated comments are attached to their mapped attribute after serialization to avoid mutation of object comments -
_calc_routines: A list of functions scheduled to be called right before serialization to update _calc_comments. Scheduling calc routines ensures that their calculated values are up-to-date. -
_meta: attributes of this container are given their own private_keys mapped byFoSpy.parsing.syntax.meta_keysin the serialized dict. -
_key_overrides: per-instance override mapping that tracks which unexpected attributes require $alias suffixes. -
_aliases: maps attribute names to alias tags used to emit $alias suffixed keys. -
_reserved: attribute names in reserved are non-private attributes which should not be serialized. This usually applies to theextattribute or methods attached after construction.
Source code in FoSpy/blocks/blocks.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 | |
set_dispatch(value=None, from_parent=None, from_key=None, allow_self=None)
classmethod
Source code in FoSpy/blocks/blocks.py
setup_dispatch(from_key=None, allow_self=True, _dispatch_from=None, _defaults={})
staticmethod
Decorate a class to dispatch to other classes during construction.
The decorated class's add_dispatch
method will be wrapped
into a new method,
dispatch_subclass,
which is decorator as a
dispatcher. The parent
class's from_key is found in the blockDict passed to the constructor,
and the value mapped to from_key is mapped to dispatchable subclasses
in the registry.
add_dispatch returns a dictionary of values that are injected into the
blockDict, either to be detected by dispatch, or to be delegated to the
constructor.
This decorator should only be used directly for the start of a dispatch
chain. For later dispatches, use
register_dispatch
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls
|
SingleBlock subclass
|
The class to be decorated. If provided, the decorator is most likely being called as a bare decorator. Otherwise, the decorators is being called with other keyword arguments and returns the modified decorator. |
None
|
from_key
|
str
|
The key to be located in the blockDict after optional injection
by |
None
|
allow_self
|
bool
|
When True, the decorated class will dispatch to itself if no subclasses can be found. When False, error is raised during construction if dispatchable subclass is not found. |
True
|
_dispatch_from
|
SingleBlock subclass
|
To be passed only by |
None
|
_defaults
|
dict
|
To be passed only by |
{}
|
Source code in FoSpy/blocks/blocks.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | |
stage_template(prop_name, template=None)
Source code in FoSpy/blocks/blocks.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | |
to_json(filepath=None, clean=True, indent=4, **kwargs)
Converts self into a JSON-formatted string or file.
Serializes and either returns as a JSON-formatted string or saves to a JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
pathlike
|
JSON file save destination. If |
None
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. FOS metadata has no impact on JSON format but may be useful to view in JSON for troubleshooting. |
True
|
indent
|
int
|
|
4
|
**kwargs
|
any
|
other arguments passed to |
{}
|
Source code in FoSpy/blocks/blocks.py
EquipmentList
Experimenter
Bases: SingleBlock
Represents an an experimenter who worked on a synthesis.
Methods:
| Name | Description |
|---|---|
TemplateClass |
Create a template for a subclass of |
__delattr__ |
|
__eq__ |
Check equality of two |
__getattr__ |
Check both |
__hash__ |
|
__init__ |
Constructs a SingleBlock object from a dictionary or another |
__new__ |
|
__setattr__ |
Assign an attribute with validation and controlled namespace behavior. |
_assign_and_inject |
Attaches attributes and methods to any value before assigning it as an |
_meta_to_front |
Moves metadata to the front of |
_rename_validators |
Realigns any renamed |
_resolve_relative_path |
Resolves a relative object path string into an object or function. |
_subprocess |
|
_update_src |
|
add_all_calc_routines |
Schedule all available calculation routines. |
add_block |
Adds an unexpected attribute with a validator mapped by |
add_calc_comment |
Add a calculated comment to be injected during serialization. |
add_calc_routine |
Schedules a calculated comment. |
add_comments |
Default behavior to be overwritten when attached to a parent block. |
add_dispatch |
|
build_req_validators |
Builds required keys and validators mapped to subclass. |
build_validators |
Builds expected keys and validators mapped to subclass. |
clear_all_comments |
|
clear_comments |
Clear comments attached to top-level attributes only. |
copy |
Returns a deep-copy of |
default_key_order |
Set to default attribute order for serialization. |
dispatch_subclass |
|
dispatcher |
Decorate a classmethod to dispatch to other subclasses. |
fill_staged_template |
|
find_attachments |
|
find_fileblock |
Finds the parent file object. |
find_tempdir |
Find the parent file object's temporary directory. |
find_temppath |
Find the parent file object's temporary directory path. |
get_id |
Returns an easily recognizable identifier for self. Non-unique. |
get_parent_prop |
|
get_prop_dict |
Returns a dictionary mapping property names to their live object values. |
get_prop_path |
|
get_req_validators |
Overrides class validators with any renamed properties. |
get_validators |
Overrides class validators with any renamed properties. |
has_staged |
|
inject_defaults |
|
inspect |
|
key_to_idx |
Reorder attributes for serialization. |
keys_to_end |
Reorder attributes for serialization. |
keys_to_front |
Reorder attributes for serialization. |
list_avail_routines |
Lists all calc routines available to be added to |
make_template |
Converts |
print_summary |
|
reflex |
|
refresh_attachments |
|
register_dispatch |
Decorate a subclass to be dispatched from a parent class. |
rename_block |
|
rename_dict |
|
serialize |
Return a recursively serialized |
set_dispatch |
|
setup_dispatch |
Decorate a class to dispatch to other classes during construction. |
stage_template |
|
to_json |
Converts |
track_attachments |
|
Source code in FoSpy/blocks/metadata.py
_aliases = new_als
class-attribute
instance-attribute
_calc_comments = {}
instance-attribute
_calc_routines = []
instance-attribute
_constructed = True
instance-attribute
_id_key = 'name'
class-attribute
instance-attribute
_key_order = []
instance-attribute
_key_overrides = {}
instance-attribute
_meta = SubContainer()
instance-attribute
_reserved = ['ext']
instance-attribute
_sourceDict = blockDict.copy()
instance-attribute
_staged_templates = {}
instance-attribute
dispatch = {}
class-attribute
instance-attribute
dispatch_allow_self = True
class-attribute
instance-attribute
dispatch_default = None
class-attribute
instance-attribute
dispatch_key = None
class-attribute
instance-attribute
ext = SubContainer()
instance-attribute
rename = rename
instance-attribute
TemplateClass(*args)
classmethod
Create a template for a subclass of SingleBlock.
Generates a hybridized subclass of the current block class and
TemplateBlock. Template
subclasses override original expected validators with either a
TemplateField,
TemplateBlock, or
TemplateList depending on the
type of the original validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
str
|
A list of properties to override as template types. |
()
|
Source code in FoSpy/blocks/blocks.py
__delattr__(attr)
__eq__(other, suppress_routine_paths=False)
Check equality of two SingleBlock objects.
Equality is checked by a deep difference of their serialized dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suppress_routine_paths
|
bool
|
Optional flag to still return true if the only differences found are in calculation routine metadata. Calculation routines are for user information only and may not be relevant for equality. |
False
|
Source code in FoSpy/blocks/blocks.py
__getattr__(name)
Check both self and self.ext for attribute before returning.
A matching attribute of self will be returned first, but if self has
no matching attribute, a matching attribute of self.ext can be
returned instead.
Source code in FoSpy/blocks/blocks.py
__init__(blockDict, *args, **kwargs)
Constructs a SingleBlock object from a dictionary or another SingleBlock.
Before construction, the
blockDict is unwrapped into a deep-copied dictionary and scanned to
determine which subclass should be constructed.
SingleBlocks are constructed recursively from an arbitrarily nested
dictionary. After popping the top-level rename
key, to see if any expected properties
have been renamed, all keys identified by
get_req_validators
must be in the top-level. Validation of all properties is delegated to
setattr.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
blockDict
|
dict
|
An arbitrarily nested dictionary mapping attribute names to values. It is possible to pass a blockDict already containing FoSpy objects, but validation routines may fail if objects are not the correct type. Best practice is to serialize all nested objects into lists, dicts, and strings to allow full type coersion. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
A key required by |
TypeError
|
The value passed as |
Source code in FoSpy/blocks/blocks.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
__new__(blockDict, *args, **kwargs)
Source code in FoSpy/blocks/blocks.py
__setattr__(name, value)
Assign an attribute with validation and controlled namespace behavior.
Contract
SingleBlock enforces type correctness and validator execution for
all public attributes defined for its subclass.
Required types and validators are mapped by subclass in
parsing.validation
Comment-mutating methods are attached to every object assigned to an
attribute. (See
add_comments)
Rules
- Private attributes (
_-prefixed) bypass validation. - Attributes with registered validators are processed through the validator before assignment.
- Attributes with required types are coerced by calling the type constructor when necessary.
- Unrecognized attributes can be assigned to a validator mapped to
an alias in
parsing.validation, using the syntaxname="name$alias". - Unrecognized attribute names are redirected as attributes of
self.ext.
Raises:
| Type | Description |
|---|---|
ValueError
|
|
Source code in FoSpy/blocks/blocks.py
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | |
_assign_and_inject(name, value, extended=False)
Attaches attributes and methods to any value before assigning it as an
attribute of self or self.ext.
Attributes Attached to Object
_parent_block: refers to self
Methods Attached to Object
Source code in FoSpy/blocks/blocks.py
_meta_to_front()
Moves metadata to the front of _key_order. Metadata will always be
serialized first, but being elsewhere in the order leads to unexpected
results when moving other keys to desired indices.
Source code in FoSpy/blocks/blocks.py
_rename_validators(validators)
Realigns any renamed attributes with their expected validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
validators
|
dict
|
A dictionary mapping attribute names to validators, returned by
either
|
required |
Source code in FoSpy/blocks/blocks.py
_resolve_relative_path(path)
Resolves a relative object path string into an object or function.
Example:
Source code in FoSpy/blocks/blocks.py
_subprocess(target, args=(), **kwargs)
_update_src()
add_all_calc_routines(recursive=False)
Schedule all available calculation routines.
Adds all available calc_routines to self._calc_routines using
list_avail_routines()
and
add_calc_routine().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
Optional recursion. See |
False
|
Source code in FoSpy/blocks/blocks.py
add_block(block_name, type_alias, value=[])
Adds an unexpected attribute with a validator mapped by type_alias.
Unexpected attributes not requiring a validator can be set directly
without using this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_name
|
str
|
new unexpected attribute name |
required |
type_alias
|
str
|
Alias mapped to the desired validator in
|
required |
Source code in FoSpy/blocks/blocks.py
add_calc_comment(key, comment, calc_id)
Add a calculated comment to be injected during serialization.
WARNING: This function can leave outdated calculations in comments after
serialization. Recommended to use add_calc_routine() instead.
Calculated comments are for user information and will be formatted to be skipped by the parser when reading the file. This is useful for comments that should be recalculated and refreshed during saving/serialization, like weight percentages or summaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
attribute to attach the calculated comment to. Comments appear above their attached attributes in FOS format. |
required |
comment
|
str
|
comment text without comment formatting (don't include // or !) |
required |
calc_id
|
str
|
unique identifier for the calculated comment. If it matches an existing comment (like when refreshing a value), the comment is overwritten |
required |
Source code in FoSpy/blocks/blocks.py
add_calc_routine(path, **kwargs)
Schedules a calculated comment.
Appends a
_calc_routine()-decorated
function to self._calc_routines to be run at
serialization.
Used to add calculated comments that should be refreshed during serialization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
a relative path string that can be resolved into a
|
required |
**kwargs
|
any
|
optional key word arguments to be passed to the function at path. |
{}
|
Raises:
| Type | Description |
|---|---|
TypeError
|
the attr or method at path is not registered as a _calc_routine |
Example:
mySyn.add_calc_routine("materials.add_weight_pcts", typ="reagent")
## mySyn.materials.add_weight_pcts(typ="reagent") is now scheduled
## to run at serialization
Source code in FoSpy/blocks/blocks.py
add_comments(*comments)
Default behavior to be overwritten when attached to a parent block.
If a SingleBlock is stored as an attribute of another SingleBlock,
this method will be overwritten by the parent's __setattr__.
Source code in FoSpy/blocks/blocks.py
add_dispatch(blockDict, dispatch_key, _wrapped=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
build_req_validators()
classmethod
Builds required keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are required
during __init__, and their respective validation routines. Subclasses
are mapped to expected keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Returns:
| Name | Type | Description |
|---|---|---|
merged |
dict
|
Maps required keys to validation routines. Routines may be a class constructor or a func taking one arg. |
Example:
>>> SingleBlock.build_req_validators()
{
"name": str,
"type": str,
"formula": ChemFormula, # class constructor
"supplier": str,
"cas": str,
"form": str,
"env": str,
"ratio": validators.material.ratio # validator function
}
Source code in FoSpy/blocks/blocks.py
build_validators()
classmethod
Builds expected keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are expected
(required or optional), and their respective validation routines.
Subclasses are mapped to keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Source code in FoSpy/blocks/blocks.py
clear_all_comments()
clear_comments()
copy()
Returns a deep-copy of self by serializing and reconstructing.
_calc_comments are not preserved during copy, but _calc_routines are. This prevents mutation of the comments when reconstructing.
Source code in FoSpy/blocks/blocks.py
default_key_order(deep=False)
Set to default attribute order for serialization.
Rearrange attribute order to the default order assigned by
build_validators
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deep
|
bool
|
When true, recursively calls |
False
|
Source code in FoSpy/blocks/blocks.py
dispatch_subclass(*args, **kwargs)
classmethod
dispatcher(dispatch_method)
staticmethod
Decorate a classmethod to dispatch to other subclasses.
Not normally used directly. See
setup_dispatch
decorator.
Source code in FoSpy/blocks/blocks.py
fill_staged_template(prop_name, **kwargs)
Source code in FoSpy/blocks/blocks.py
find_attachments()
Source code in FoSpy/blocks/blocks.py
find_fileblock()
Finds the parent file object.
Walks upward through _parent_block attributes until a
FileBlock instance is found and
returns that instance.
Source code in FoSpy/blocks/blocks.py
find_tempdir()
Find the parent file object's temporary directory.
Finds the temporary directory created by the
FileBlock instance containing this
block as one of its attributes.
Returns:
| Name | Type | Description |
|---|---|---|
tempdir |
tempfile.TemporaryDirectory
|
The temporary directory created by the parent file object |
Source code in FoSpy/blocks/blocks.py
find_temppath()
Find the parent file object's temporary directory path.
Similar to find_tempdir but
returns the corresponding pathlib.Path object instead.
Source code in FoSpy/blocks/blocks.py
get_id()
Returns an easily recognizable identifier for self. Non-unique.
get_parent_prop()
Source code in FoSpy/blocks/blocks.py
get_prop_dict()
Returns a dictionary mapping property names to their live object values.
Source code in FoSpy/blocks/blocks.py
get_prop_path()
Source code in FoSpy/blocks/blocks.py
get_req_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_req_validators,
but uses
_rename_validators
to align any renamed properties with their original validators.
Source code in FoSpy/blocks/blocks.py
get_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_validators,
but uses
_rename_validators
to align any renamed properties with their original validators. Also
adds any optional key overrides added by key$alias syntax.
Returns:
| Name | Type | Description |
|---|---|---|
vals |
dict
|
maps expected keys to validation routines. |
Source code in FoSpy/blocks/blocks.py
has_staged()
inject_defaults(blockDict, *args, **kwargs)
classmethod
inspect()
classmethod
key_to_idx(key, idx)
Reorder attributes for serialization.
Move any attribute name to a specific index in _key_order for
serialization order. The invisible "metadata" key is always refreshed
to the front of the list, so indices are effectively 1-based.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
name of attribute to reorder |
required |
idx
|
int
|
new index in _key_order |
required |
Source code in FoSpy/blocks/blocks.py
keys_to_end(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the end of _key_order to be
serialized last. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
keys_to_front(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the front of _key_order to be
serialized first. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
list_avail_routines(recursive=False, prefix='', abbreviated=False)
Lists all calc routines available to be added to self._calc_routines.
Non-abbreviated calc routine strings can be passed directly to
self.add_calc_routine()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
If True, recursively walks all attributes and appends results
from |
False
|
prefix
|
str
|
Used during recursion to build relative paths |
''
|
abbreviated
|
bool
|
optionally abbreviate recursively repeated routines for similar
objects into one line. This line cannot be passed to
|
False
|
Returns:
| Name | Type | Description |
|---|---|---|
routines |
list
|
list of strings describing _calc_routine-decorated methods.
Non-abbreviated calc routine strings can be passed directly to
|
Example:
mySyn.list_avail_routines()
## returns []
mySyn.list_avail_routines(recursive=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[0].add_MW',
## 'materials[1].add_MW',
## ... 6 total materials with the same calc_routine
## 'materials[5].add_MW'
## ]
mySyn.list_avail_routines(recursive=True, abbreviated=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[i].add_MW; i = [0, 1, 2, 3, 4, 5]'
## ]
Source code in FoSpy/blocks/blocks.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 | |
make_template(template_name, *args)
Converts self into a template of its original subclass.
Returns a copy of self as a template of its original subclass, with
specified fields replaced with template types. See
TemplateClass for
more information on template generation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_name
|
str
|
All templates require an identifying name. |
required |
*args
|
str
|
properties to clear and replace with template types. |
()
|
Source code in FoSpy/blocks/blocks.py
print_summary(mode='cli')
classmethod
reflex(serialize=True, include_temp_names=True, clean=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
refresh_attachments(new_copy=None, overwrite=None, **kwargs)
Source code in FoSpy/blocks/blocks.py
register_dispatch(registry_val, from_parent=None, setup_from_key=None, setup_allow_self=True, inherit_dispatch=False, defaults=None)
classmethod
Decorate a subclass to be dispatched from a parent class.
The subclass will also be decorated with the parent's setup_dispatch to set up its own dispatch parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry_val
|
The value to be found in a dispatched blockDict which will be mapped to the subclass in the parent class's registry. |
required | |
from_parent
|
type[BlockType]
|
The parent class to register the subclass to. Defaults to the class which calls the method, but may be overridden if a non-SingleBlock abstract class is the parent. |
None
|
setup_from_key
|
Passed as from_key to the parents setup_dispatch decorator. |
None
|
|
setup_allow_self
|
Passed as allow_self to the parent's setup_dispatch decorator. |
True
|
|
inherit_dispatch
|
Whether the decorated class should inherit its parent's
|
False
|
|
defaults
|
dict
|
Default values that should be injected into the blockDict when
trying to guarantee dispatching to the registered class.
Defaults to {}. If parent's from_key is public, defaults will be
updated with |
None
|
Source code in FoSpy/blocks/blocks.py
rename_block(old, new)
Source code in FoSpy/blocks/blocks.py
rename_dict()
serialize(keepListType=False, shallow=False, clean=False, **kwargs)
Return a recursively serialized dict representation of self.
Fully serialized SingleBlocks are a single dict that can be passed to
another constructor or emitted into lines for a FOS file. Serialized
values at any nest level are either dicts, lists, or strings to allow
full type-coersion when reconstructing or simplified emission when
writing files.
Serialized dict is deep copied to prevent object mutation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keepListType
|
bool
|
When True, maintains its current FOS printing mode (looped keys or explicit key:value lines), instead of explicit default |
False
|
shallow
|
bool
|
When True, no recursive serialization occurs. Recommended when serialization is used only to inspect top-level keys. |
False
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. Recommended for sending output to other formats like JSON. |
False
|
Private attributes starting with "_" are either skipped or unpacked in special cases:
-
_key_order: attributes are added to the serialized dict in the order they appear in this list. -
_calc_comments: calculated comments are attached to their mapped attribute after serialization to avoid mutation of object comments -
_calc_routines: A list of functions scheduled to be called right before serialization to update _calc_comments. Scheduling calc routines ensures that their calculated values are up-to-date. -
_meta: attributes of this container are given their own private_keys mapped byFoSpy.parsing.syntax.meta_keysin the serialized dict. -
_key_overrides: per-instance override mapping that tracks which unexpected attributes require $alias suffixes. -
_aliases: maps attribute names to alias tags used to emit $alias suffixed keys. -
_reserved: attribute names in reserved are non-private attributes which should not be serialized. This usually applies to theextattribute or methods attached after construction.
Source code in FoSpy/blocks/blocks.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 | |
set_dispatch(value=None, from_parent=None, from_key=None, allow_self=None)
classmethod
Source code in FoSpy/blocks/blocks.py
setup_dispatch(from_key=None, allow_self=True, _dispatch_from=None, _defaults={})
staticmethod
Decorate a class to dispatch to other classes during construction.
The decorated class's add_dispatch
method will be wrapped
into a new method,
dispatch_subclass,
which is decorator as a
dispatcher. The parent
class's from_key is found in the blockDict passed to the constructor,
and the value mapped to from_key is mapped to dispatchable subclasses
in the registry.
add_dispatch returns a dictionary of values that are injected into the
blockDict, either to be detected by dispatch, or to be delegated to the
constructor.
This decorator should only be used directly for the start of a dispatch
chain. For later dispatches, use
register_dispatch
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls
|
SingleBlock subclass
|
The class to be decorated. If provided, the decorator is most likely being called as a bare decorator. Otherwise, the decorators is being called with other keyword arguments and returns the modified decorator. |
None
|
from_key
|
str
|
The key to be located in the blockDict after optional injection
by |
None
|
allow_self
|
bool
|
When True, the decorated class will dispatch to itself if no subclasses can be found. When False, error is raised during construction if dispatchable subclass is not found. |
True
|
_dispatch_from
|
SingleBlock subclass
|
To be passed only by |
None
|
_defaults
|
dict
|
To be passed only by |
{}
|
Source code in FoSpy/blocks/blocks.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | |
stage_template(prop_name, template=None)
Source code in FoSpy/blocks/blocks.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | |
to_json(filepath=None, clean=True, indent=4, **kwargs)
Converts self into a JSON-formatted string or file.
Serializes and either returns as a JSON-formatted string or saves to a JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
pathlike
|
JSON file save destination. If |
None
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. FOS metadata has no impact on JSON format but may be useful to view in JSON for troubleshooting. |
True
|
indent
|
int
|
|
4
|
**kwargs
|
any
|
other arguments passed to |
{}
|
Source code in FoSpy/blocks/blocks.py
ExperimenterList
LabConditions
Bases: SingleBlock
Methods:
| Name | Description |
|---|---|
TemplateClass |
Create a template for a subclass of |
__delattr__ |
|
__eq__ |
Check equality of two |
__getattr__ |
Check both |
__hash__ |
|
__init__ |
Constructs a SingleBlock object from a dictionary or another |
__new__ |
|
__setattr__ |
Assign an attribute with validation and controlled namespace behavior. |
_assign_and_inject |
Attaches attributes and methods to any value before assigning it as an |
_meta_to_front |
Moves metadata to the front of |
_rename_validators |
Realigns any renamed |
_resolve_relative_path |
Resolves a relative object path string into an object or function. |
_subprocess |
|
_update_src |
|
add_all_calc_routines |
Schedule all available calculation routines. |
add_block |
Adds an unexpected attribute with a validator mapped by |
add_calc_comment |
Add a calculated comment to be injected during serialization. |
add_calc_routine |
Schedules a calculated comment. |
add_comments |
Default behavior to be overwritten when attached to a parent block. |
add_dispatch |
|
build_req_validators |
Builds required keys and validators mapped to subclass. |
build_validators |
Builds expected keys and validators mapped to subclass. |
clear_all_comments |
|
clear_comments |
Clear comments attached to top-level attributes only. |
copy |
Returns a deep-copy of |
default_key_order |
Set to default attribute order for serialization. |
dispatch_subclass |
|
dispatcher |
Decorate a classmethod to dispatch to other subclasses. |
fill_staged_template |
|
find_attachments |
|
find_fileblock |
Finds the parent file object. |
find_tempdir |
Find the parent file object's temporary directory. |
find_temppath |
Find the parent file object's temporary directory path. |
get_id |
Returns an easily recognizable identifier for self. Non-unique. |
get_parent_prop |
|
get_prop_dict |
Returns a dictionary mapping property names to their live object values. |
get_prop_path |
|
get_req_validators |
Overrides class validators with any renamed properties. |
get_validators |
Overrides class validators with any renamed properties. |
has_staged |
|
inject_defaults |
|
inspect |
|
key_to_idx |
Reorder attributes for serialization. |
keys_to_end |
Reorder attributes for serialization. |
keys_to_front |
Reorder attributes for serialization. |
list_avail_routines |
Lists all calc routines available to be added to |
make_template |
Converts |
print_summary |
|
reflex |
|
refresh_attachments |
|
register_dispatch |
Decorate a subclass to be dispatched from a parent class. |
rename_block |
|
rename_dict |
|
serialize |
Return a recursively serialized |
set_dispatch |
|
setup_dispatch |
Decorate a class to dispatch to other classes during construction. |
stage_template |
|
to_json |
Converts |
track_attachments |
|
_aliases = new_als
class-attribute
instance-attribute
_calc_comments = {}
instance-attribute
_calc_routines = []
instance-attribute
_constructed = True
instance-attribute
_id_key = None
class-attribute
instance-attribute
_key_order = []
instance-attribute
_key_overrides = {}
instance-attribute
_meta = SubContainer()
instance-attribute
_reserved = ['ext']
instance-attribute
_sourceDict = blockDict.copy()
instance-attribute
_staged_templates = {}
instance-attribute
dispatch = {}
class-attribute
instance-attribute
dispatch_allow_self = True
class-attribute
instance-attribute
dispatch_default = None
class-attribute
instance-attribute
dispatch_key = None
class-attribute
instance-attribute
ext = SubContainer()
instance-attribute
rename = rename
instance-attribute
TemplateClass(*args)
classmethod
Create a template for a subclass of SingleBlock.
Generates a hybridized subclass of the current block class and
TemplateBlock. Template
subclasses override original expected validators with either a
TemplateField,
TemplateBlock, or
TemplateList depending on the
type of the original validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
str
|
A list of properties to override as template types. |
()
|
Source code in FoSpy/blocks/blocks.py
__delattr__(attr)
__eq__(other, suppress_routine_paths=False)
Check equality of two SingleBlock objects.
Equality is checked by a deep difference of their serialized dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suppress_routine_paths
|
bool
|
Optional flag to still return true if the only differences found are in calculation routine metadata. Calculation routines are for user information only and may not be relevant for equality. |
False
|
Source code in FoSpy/blocks/blocks.py
__getattr__(name)
Check both self and self.ext for attribute before returning.
A matching attribute of self will be returned first, but if self has
no matching attribute, a matching attribute of self.ext can be
returned instead.
Source code in FoSpy/blocks/blocks.py
__init__(blockDict, *args, **kwargs)
Constructs a SingleBlock object from a dictionary or another SingleBlock.
Before construction, the
blockDict is unwrapped into a deep-copied dictionary and scanned to
determine which subclass should be constructed.
SingleBlocks are constructed recursively from an arbitrarily nested
dictionary. After popping the top-level rename
key, to see if any expected properties
have been renamed, all keys identified by
get_req_validators
must be in the top-level. Validation of all properties is delegated to
setattr.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
blockDict
|
dict
|
An arbitrarily nested dictionary mapping attribute names to values. It is possible to pass a blockDict already containing FoSpy objects, but validation routines may fail if objects are not the correct type. Best practice is to serialize all nested objects into lists, dicts, and strings to allow full type coersion. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
A key required by |
TypeError
|
The value passed as |
Source code in FoSpy/blocks/blocks.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
__new__(blockDict, *args, **kwargs)
Source code in FoSpy/blocks/blocks.py
__setattr__(name, value)
Assign an attribute with validation and controlled namespace behavior.
Contract
SingleBlock enforces type correctness and validator execution for
all public attributes defined for its subclass.
Required types and validators are mapped by subclass in
parsing.validation
Comment-mutating methods are attached to every object assigned to an
attribute. (See
add_comments)
Rules
- Private attributes (
_-prefixed) bypass validation. - Attributes with registered validators are processed through the validator before assignment.
- Attributes with required types are coerced by calling the type constructor when necessary.
- Unrecognized attributes can be assigned to a validator mapped to
an alias in
parsing.validation, using the syntaxname="name$alias". - Unrecognized attribute names are redirected as attributes of
self.ext.
Raises:
| Type | Description |
|---|---|
ValueError
|
|
Source code in FoSpy/blocks/blocks.py
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | |
_assign_and_inject(name, value, extended=False)
Attaches attributes and methods to any value before assigning it as an
attribute of self or self.ext.
Attributes Attached to Object
_parent_block: refers to self
Methods Attached to Object
Source code in FoSpy/blocks/blocks.py
_meta_to_front()
Moves metadata to the front of _key_order. Metadata will always be
serialized first, but being elsewhere in the order leads to unexpected
results when moving other keys to desired indices.
Source code in FoSpy/blocks/blocks.py
_rename_validators(validators)
Realigns any renamed attributes with their expected validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
validators
|
dict
|
A dictionary mapping attribute names to validators, returned by
either
|
required |
Source code in FoSpy/blocks/blocks.py
_resolve_relative_path(path)
Resolves a relative object path string into an object or function.
Example:
Source code in FoSpy/blocks/blocks.py
_subprocess(target, args=(), **kwargs)
_update_src()
add_all_calc_routines(recursive=False)
Schedule all available calculation routines.
Adds all available calc_routines to self._calc_routines using
list_avail_routines()
and
add_calc_routine().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
Optional recursion. See |
False
|
Source code in FoSpy/blocks/blocks.py
add_block(block_name, type_alias, value=[])
Adds an unexpected attribute with a validator mapped by type_alias.
Unexpected attributes not requiring a validator can be set directly
without using this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_name
|
str
|
new unexpected attribute name |
required |
type_alias
|
str
|
Alias mapped to the desired validator in
|
required |
Source code in FoSpy/blocks/blocks.py
add_calc_comment(key, comment, calc_id)
Add a calculated comment to be injected during serialization.
WARNING: This function can leave outdated calculations in comments after
serialization. Recommended to use add_calc_routine() instead.
Calculated comments are for user information and will be formatted to be skipped by the parser when reading the file. This is useful for comments that should be recalculated and refreshed during saving/serialization, like weight percentages or summaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
attribute to attach the calculated comment to. Comments appear above their attached attributes in FOS format. |
required |
comment
|
str
|
comment text without comment formatting (don't include // or !) |
required |
calc_id
|
str
|
unique identifier for the calculated comment. If it matches an existing comment (like when refreshing a value), the comment is overwritten |
required |
Source code in FoSpy/blocks/blocks.py
add_calc_routine(path, **kwargs)
Schedules a calculated comment.
Appends a
_calc_routine()-decorated
function to self._calc_routines to be run at
serialization.
Used to add calculated comments that should be refreshed during serialization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
a relative path string that can be resolved into a
|
required |
**kwargs
|
any
|
optional key word arguments to be passed to the function at path. |
{}
|
Raises:
| Type | Description |
|---|---|
TypeError
|
the attr or method at path is not registered as a _calc_routine |
Example:
mySyn.add_calc_routine("materials.add_weight_pcts", typ="reagent")
## mySyn.materials.add_weight_pcts(typ="reagent") is now scheduled
## to run at serialization
Source code in FoSpy/blocks/blocks.py
add_comments(*comments)
Default behavior to be overwritten when attached to a parent block.
If a SingleBlock is stored as an attribute of another SingleBlock,
this method will be overwritten by the parent's __setattr__.
Source code in FoSpy/blocks/blocks.py
add_dispatch(blockDict, dispatch_key, _wrapped=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
build_req_validators()
classmethod
Builds required keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are required
during __init__, and their respective validation routines. Subclasses
are mapped to expected keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Returns:
| Name | Type | Description |
|---|---|---|
merged |
dict
|
Maps required keys to validation routines. Routines may be a class constructor or a func taking one arg. |
Example:
>>> SingleBlock.build_req_validators()
{
"name": str,
"type": str,
"formula": ChemFormula, # class constructor
"supplier": str,
"cas": str,
"form": str,
"env": str,
"ratio": validators.material.ratio # validator function
}
Source code in FoSpy/blocks/blocks.py
build_validators()
classmethod
Builds expected keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are expected
(required or optional), and their respective validation routines.
Subclasses are mapped to keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Source code in FoSpy/blocks/blocks.py
clear_all_comments()
clear_comments()
copy()
Returns a deep-copy of self by serializing and reconstructing.
_calc_comments are not preserved during copy, but _calc_routines are. This prevents mutation of the comments when reconstructing.
Source code in FoSpy/blocks/blocks.py
default_key_order(deep=False)
Set to default attribute order for serialization.
Rearrange attribute order to the default order assigned by
build_validators
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deep
|
bool
|
When true, recursively calls |
False
|
Source code in FoSpy/blocks/blocks.py
dispatch_subclass(*args, **kwargs)
classmethod
dispatcher(dispatch_method)
staticmethod
Decorate a classmethod to dispatch to other subclasses.
Not normally used directly. See
setup_dispatch
decorator.
Source code in FoSpy/blocks/blocks.py
fill_staged_template(prop_name, **kwargs)
Source code in FoSpy/blocks/blocks.py
find_attachments()
Source code in FoSpy/blocks/blocks.py
find_fileblock()
Finds the parent file object.
Walks upward through _parent_block attributes until a
FileBlock instance is found and
returns that instance.
Source code in FoSpy/blocks/blocks.py
find_tempdir()
Find the parent file object's temporary directory.
Finds the temporary directory created by the
FileBlock instance containing this
block as one of its attributes.
Returns:
| Name | Type | Description |
|---|---|---|
tempdir |
tempfile.TemporaryDirectory
|
The temporary directory created by the parent file object |
Source code in FoSpy/blocks/blocks.py
find_temppath()
Find the parent file object's temporary directory path.
Similar to find_tempdir but
returns the corresponding pathlib.Path object instead.
Source code in FoSpy/blocks/blocks.py
get_id()
Returns an easily recognizable identifier for self. Non-unique.
get_parent_prop()
Source code in FoSpy/blocks/blocks.py
get_prop_dict()
Returns a dictionary mapping property names to their live object values.
Source code in FoSpy/blocks/blocks.py
get_prop_path()
Source code in FoSpy/blocks/blocks.py
get_req_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_req_validators,
but uses
_rename_validators
to align any renamed properties with their original validators.
Source code in FoSpy/blocks/blocks.py
get_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_validators,
but uses
_rename_validators
to align any renamed properties with their original validators. Also
adds any optional key overrides added by key$alias syntax.
Returns:
| Name | Type | Description |
|---|---|---|
vals |
dict
|
maps expected keys to validation routines. |
Source code in FoSpy/blocks/blocks.py
has_staged()
inject_defaults(blockDict, *args, **kwargs)
classmethod
inspect()
classmethod
key_to_idx(key, idx)
Reorder attributes for serialization.
Move any attribute name to a specific index in _key_order for
serialization order. The invisible "metadata" key is always refreshed
to the front of the list, so indices are effectively 1-based.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
name of attribute to reorder |
required |
idx
|
int
|
new index in _key_order |
required |
Source code in FoSpy/blocks/blocks.py
keys_to_end(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the end of _key_order to be
serialized last. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
keys_to_front(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the front of _key_order to be
serialized first. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
list_avail_routines(recursive=False, prefix='', abbreviated=False)
Lists all calc routines available to be added to self._calc_routines.
Non-abbreviated calc routine strings can be passed directly to
self.add_calc_routine()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
If True, recursively walks all attributes and appends results
from |
False
|
prefix
|
str
|
Used during recursion to build relative paths |
''
|
abbreviated
|
bool
|
optionally abbreviate recursively repeated routines for similar
objects into one line. This line cannot be passed to
|
False
|
Returns:
| Name | Type | Description |
|---|---|---|
routines |
list
|
list of strings describing _calc_routine-decorated methods.
Non-abbreviated calc routine strings can be passed directly to
|
Example:
mySyn.list_avail_routines()
## returns []
mySyn.list_avail_routines(recursive=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[0].add_MW',
## 'materials[1].add_MW',
## ... 6 total materials with the same calc_routine
## 'materials[5].add_MW'
## ]
mySyn.list_avail_routines(recursive=True, abbreviated=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[i].add_MW; i = [0, 1, 2, 3, 4, 5]'
## ]
Source code in FoSpy/blocks/blocks.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 | |
make_template(template_name, *args)
Converts self into a template of its original subclass.
Returns a copy of self as a template of its original subclass, with
specified fields replaced with template types. See
TemplateClass for
more information on template generation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_name
|
str
|
All templates require an identifying name. |
required |
*args
|
str
|
properties to clear and replace with template types. |
()
|
Source code in FoSpy/blocks/blocks.py
print_summary(mode='cli')
classmethod
reflex(serialize=True, include_temp_names=True, clean=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
refresh_attachments(new_copy=None, overwrite=None, **kwargs)
Source code in FoSpy/blocks/blocks.py
register_dispatch(registry_val, from_parent=None, setup_from_key=None, setup_allow_self=True, inherit_dispatch=False, defaults=None)
classmethod
Decorate a subclass to be dispatched from a parent class.
The subclass will also be decorated with the parent's setup_dispatch to set up its own dispatch parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry_val
|
The value to be found in a dispatched blockDict which will be mapped to the subclass in the parent class's registry. |
required | |
from_parent
|
type[BlockType]
|
The parent class to register the subclass to. Defaults to the class which calls the method, but may be overridden if a non-SingleBlock abstract class is the parent. |
None
|
setup_from_key
|
Passed as from_key to the parents setup_dispatch decorator. |
None
|
|
setup_allow_self
|
Passed as allow_self to the parent's setup_dispatch decorator. |
True
|
|
inherit_dispatch
|
Whether the decorated class should inherit its parent's
|
False
|
|
defaults
|
dict
|
Default values that should be injected into the blockDict when
trying to guarantee dispatching to the registered class.
Defaults to {}. If parent's from_key is public, defaults will be
updated with |
None
|
Source code in FoSpy/blocks/blocks.py
rename_block(old, new)
Source code in FoSpy/blocks/blocks.py
rename_dict()
serialize(keepListType=False, shallow=False, clean=False, **kwargs)
Return a recursively serialized dict representation of self.
Fully serialized SingleBlocks are a single dict that can be passed to
another constructor or emitted into lines for a FOS file. Serialized
values at any nest level are either dicts, lists, or strings to allow
full type-coersion when reconstructing or simplified emission when
writing files.
Serialized dict is deep copied to prevent object mutation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keepListType
|
bool
|
When True, maintains its current FOS printing mode (looped keys or explicit key:value lines), instead of explicit default |
False
|
shallow
|
bool
|
When True, no recursive serialization occurs. Recommended when serialization is used only to inspect top-level keys. |
False
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. Recommended for sending output to other formats like JSON. |
False
|
Private attributes starting with "_" are either skipped or unpacked in special cases:
-
_key_order: attributes are added to the serialized dict in the order they appear in this list. -
_calc_comments: calculated comments are attached to their mapped attribute after serialization to avoid mutation of object comments -
_calc_routines: A list of functions scheduled to be called right before serialization to update _calc_comments. Scheduling calc routines ensures that their calculated values are up-to-date. -
_meta: attributes of this container are given their own private_keys mapped byFoSpy.parsing.syntax.meta_keysin the serialized dict. -
_key_overrides: per-instance override mapping that tracks which unexpected attributes require $alias suffixes. -
_aliases: maps attribute names to alias tags used to emit $alias suffixed keys. -
_reserved: attribute names in reserved are non-private attributes which should not be serialized. This usually applies to theextattribute or methods attached after construction.
Source code in FoSpy/blocks/blocks.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 | |
set_dispatch(value=None, from_parent=None, from_key=None, allow_self=None)
classmethod
Source code in FoSpy/blocks/blocks.py
setup_dispatch(from_key=None, allow_self=True, _dispatch_from=None, _defaults={})
staticmethod
Decorate a class to dispatch to other classes during construction.
The decorated class's add_dispatch
method will be wrapped
into a new method,
dispatch_subclass,
which is decorator as a
dispatcher. The parent
class's from_key is found in the blockDict passed to the constructor,
and the value mapped to from_key is mapped to dispatchable subclasses
in the registry.
add_dispatch returns a dictionary of values that are injected into the
blockDict, either to be detected by dispatch, or to be delegated to the
constructor.
This decorator should only be used directly for the start of a dispatch
chain. For later dispatches, use
register_dispatch
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls
|
SingleBlock subclass
|
The class to be decorated. If provided, the decorator is most likely being called as a bare decorator. Otherwise, the decorators is being called with other keyword arguments and returns the modified decorator. |
None
|
from_key
|
str
|
The key to be located in the blockDict after optional injection
by |
None
|
allow_self
|
bool
|
When True, the decorated class will dispatch to itself if no subclasses can be found. When False, error is raised during construction if dispatchable subclass is not found. |
True
|
_dispatch_from
|
SingleBlock subclass
|
To be passed only by |
None
|
_defaults
|
dict
|
To be passed only by |
{}
|
Source code in FoSpy/blocks/blocks.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | |
stage_template(prop_name, template=None)
Source code in FoSpy/blocks/blocks.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | |
to_json(filepath=None, clean=True, indent=4, **kwargs)
Converts self into a JSON-formatted string or file.
Serializes and either returns as a JSON-formatted string or saves to a JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
pathlike
|
JSON file save destination. If |
None
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. FOS metadata has no impact on JSON format but may be useful to view in JSON for troubleshooting. |
True
|
indent
|
int
|
|
4
|
**kwargs
|
any
|
other arguments passed to |
{}
|
Source code in FoSpy/blocks/blocks.py
MetaData
Bases: SingleBlock
Represents metadata for a FOS-formatted file.
Any key:value pairs at the top of a FOS file will automatically be assigned to metadata
Methods:
| Name | Description |
|---|---|
TemplateClass |
Create a template for a subclass of |
__delattr__ |
|
__eq__ |
Check equality of two |
__getattr__ |
Check both |
__hash__ |
|
__init__ |
Constructs a SingleBlock object from a dictionary or another |
__new__ |
|
__setattr__ |
Assign an attribute with validation and controlled namespace behavior. |
_assign_and_inject |
Attaches attributes and methods to any value before assigning it as an |
_meta_to_front |
Moves metadata to the front of |
_rename_validators |
Realigns any renamed |
_resolve_relative_path |
Resolves a relative object path string into an object or function. |
_subprocess |
|
_update_src |
|
add_all_calc_routines |
Schedule all available calculation routines. |
add_block |
Adds an unexpected attribute with a validator mapped by |
add_calc_comment |
Add a calculated comment to be injected during serialization. |
add_calc_routine |
Schedules a calculated comment. |
add_comments |
Default behavior to be overwritten when attached to a parent block. |
add_dispatch |
|
build_req_validators |
Builds required keys and validators mapped to subclass. |
build_validators |
Builds expected keys and validators mapped to subclass. |
clear_all_comments |
|
clear_comments |
Clear comments attached to top-level attributes only. |
copy |
Returns a deep-copy of |
default_key_order |
Set to default attribute order for serialization. |
dispatch_subclass |
|
dispatcher |
Decorate a classmethod to dispatch to other subclasses. |
fill_staged_template |
|
find_attachments |
|
find_fileblock |
Finds the parent file object. |
find_tempdir |
Find the parent file object's temporary directory. |
find_temppath |
Find the parent file object's temporary directory path. |
get_id |
Returns an easily recognizable identifier for self. Non-unique. |
get_parent_prop |
|
get_prop_dict |
Returns a dictionary mapping property names to their live object values. |
get_prop_path |
|
get_req_validators |
Overrides class validators with any renamed properties. |
get_validators |
Overrides class validators with any renamed properties. |
has_staged |
|
inject_defaults |
|
inspect |
|
key_to_idx |
Reorder attributes for serialization. |
keys_to_end |
Reorder attributes for serialization. |
keys_to_front |
Reorder attributes for serialization. |
list_avail_routines |
Lists all calc routines available to be added to |
make_template |
Converts |
print_summary |
|
reflex |
|
refresh_attachments |
|
register_dispatch |
Decorate a subclass to be dispatched from a parent class. |
rename_block |
|
rename_dict |
|
serialize |
Return a recursively serialized |
set_dispatch |
|
setup_dispatch |
Decorate a class to dispatch to other classes during construction. |
stage_template |
|
to_json |
Converts |
track_attachments |
|
Source code in FoSpy/blocks/metadata.py
_aliases = new_als
class-attribute
instance-attribute
_calc_comments = {}
instance-attribute
_calc_routines = []
instance-attribute
_constructed = True
instance-attribute
_id_key = None
class-attribute
instance-attribute
_key_order = []
instance-attribute
_key_overrides = {}
instance-attribute
_meta = SubContainer()
instance-attribute
_reserved = ['ext']
instance-attribute
_sourceDict = blockDict.copy()
instance-attribute
_staged_templates = {}
instance-attribute
allow_rename = False
class-attribute
instance-attribute
dispatch = {}
class-attribute
instance-attribute
dispatch_allow_self = True
class-attribute
instance-attribute
dispatch_default = None
class-attribute
instance-attribute
dispatch_key = None
class-attribute
instance-attribute
ext = SubContainer()
instance-attribute
rename = rename
instance-attribute
TemplateClass(*args)
classmethod
Create a template for a subclass of SingleBlock.
Generates a hybridized subclass of the current block class and
TemplateBlock. Template
subclasses override original expected validators with either a
TemplateField,
TemplateBlock, or
TemplateList depending on the
type of the original validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
str
|
A list of properties to override as template types. |
()
|
Source code in FoSpy/blocks/blocks.py
__delattr__(attr)
__eq__(other, suppress_routine_paths=False)
Check equality of two SingleBlock objects.
Equality is checked by a deep difference of their serialized dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suppress_routine_paths
|
bool
|
Optional flag to still return true if the only differences found are in calculation routine metadata. Calculation routines are for user information only and may not be relevant for equality. |
False
|
Source code in FoSpy/blocks/blocks.py
__getattr__(name)
Check both self and self.ext for attribute before returning.
A matching attribute of self will be returned first, but if self has
no matching attribute, a matching attribute of self.ext can be
returned instead.
Source code in FoSpy/blocks/blocks.py
__init__(blockDict, *args, **kwargs)
Constructs a SingleBlock object from a dictionary or another SingleBlock.
Before construction, the
blockDict is unwrapped into a deep-copied dictionary and scanned to
determine which subclass should be constructed.
SingleBlocks are constructed recursively from an arbitrarily nested
dictionary. After popping the top-level rename
key, to see if any expected properties
have been renamed, all keys identified by
get_req_validators
must be in the top-level. Validation of all properties is delegated to
setattr.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
blockDict
|
dict
|
An arbitrarily nested dictionary mapping attribute names to values. It is possible to pass a blockDict already containing FoSpy objects, but validation routines may fail if objects are not the correct type. Best practice is to serialize all nested objects into lists, dicts, and strings to allow full type coersion. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
A key required by |
TypeError
|
The value passed as |
Source code in FoSpy/blocks/blocks.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
__new__(blockDict, *args, **kwargs)
Source code in FoSpy/blocks/blocks.py
__setattr__(name, value)
Assign an attribute with validation and controlled namespace behavior.
Contract
SingleBlock enforces type correctness and validator execution for
all public attributes defined for its subclass.
Required types and validators are mapped by subclass in
parsing.validation
Comment-mutating methods are attached to every object assigned to an
attribute. (See
add_comments)
Rules
- Private attributes (
_-prefixed) bypass validation. - Attributes with registered validators are processed through the validator before assignment.
- Attributes with required types are coerced by calling the type constructor when necessary.
- Unrecognized attributes can be assigned to a validator mapped to
an alias in
parsing.validation, using the syntaxname="name$alias". - Unrecognized attribute names are redirected as attributes of
self.ext.
Raises:
| Type | Description |
|---|---|
ValueError
|
|
Source code in FoSpy/blocks/blocks.py
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | |
_assign_and_inject(name, value, extended=False)
Attaches attributes and methods to any value before assigning it as an
attribute of self or self.ext.
Attributes Attached to Object
_parent_block: refers to self
Methods Attached to Object
Source code in FoSpy/blocks/blocks.py
_meta_to_front()
Moves metadata to the front of _key_order. Metadata will always be
serialized first, but being elsewhere in the order leads to unexpected
results when moving other keys to desired indices.
Source code in FoSpy/blocks/blocks.py
_rename_validators(validators)
Realigns any renamed attributes with their expected validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
validators
|
dict
|
A dictionary mapping attribute names to validators, returned by
either
|
required |
Source code in FoSpy/blocks/blocks.py
_resolve_relative_path(path)
Resolves a relative object path string into an object or function.
Example:
Source code in FoSpy/blocks/blocks.py
_subprocess(target, args=(), **kwargs)
_update_src()
add_all_calc_routines(recursive=False)
Schedule all available calculation routines.
Adds all available calc_routines to self._calc_routines using
list_avail_routines()
and
add_calc_routine().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
Optional recursion. See |
False
|
Source code in FoSpy/blocks/blocks.py
add_block(block_name, type_alias, value=[])
Adds an unexpected attribute with a validator mapped by type_alias.
Unexpected attributes not requiring a validator can be set directly
without using this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_name
|
str
|
new unexpected attribute name |
required |
type_alias
|
str
|
Alias mapped to the desired validator in
|
required |
Source code in FoSpy/blocks/blocks.py
add_calc_comment(key, comment, calc_id)
Add a calculated comment to be injected during serialization.
WARNING: This function can leave outdated calculations in comments after
serialization. Recommended to use add_calc_routine() instead.
Calculated comments are for user information and will be formatted to be skipped by the parser when reading the file. This is useful for comments that should be recalculated and refreshed during saving/serialization, like weight percentages or summaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
attribute to attach the calculated comment to. Comments appear above their attached attributes in FOS format. |
required |
comment
|
str
|
comment text without comment formatting (don't include // or !) |
required |
calc_id
|
str
|
unique identifier for the calculated comment. If it matches an existing comment (like when refreshing a value), the comment is overwritten |
required |
Source code in FoSpy/blocks/blocks.py
add_calc_routine(path, **kwargs)
Schedules a calculated comment.
Appends a
_calc_routine()-decorated
function to self._calc_routines to be run at
serialization.
Used to add calculated comments that should be refreshed during serialization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
a relative path string that can be resolved into a
|
required |
**kwargs
|
any
|
optional key word arguments to be passed to the function at path. |
{}
|
Raises:
| Type | Description |
|---|---|
TypeError
|
the attr or method at path is not registered as a _calc_routine |
Example:
mySyn.add_calc_routine("materials.add_weight_pcts", typ="reagent")
## mySyn.materials.add_weight_pcts(typ="reagent") is now scheduled
## to run at serialization
Source code in FoSpy/blocks/blocks.py
add_comments(*comments)
Default behavior to be overwritten when attached to a parent block.
If a SingleBlock is stored as an attribute of another SingleBlock,
this method will be overwritten by the parent's __setattr__.
Source code in FoSpy/blocks/blocks.py
add_dispatch(blockDict, dispatch_key, _wrapped=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
build_req_validators()
classmethod
Builds required keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are required
during __init__, and their respective validation routines. Subclasses
are mapped to expected keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Returns:
| Name | Type | Description |
|---|---|---|
merged |
dict
|
Maps required keys to validation routines. Routines may be a class constructor or a func taking one arg. |
Example:
>>> SingleBlock.build_req_validators()
{
"name": str,
"type": str,
"formula": ChemFormula, # class constructor
"supplier": str,
"cas": str,
"form": str,
"env": str,
"ratio": validators.material.ratio # validator function
}
Source code in FoSpy/blocks/blocks.py
build_validators()
classmethod
Builds expected keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are expected
(required or optional), and their respective validation routines.
Subclasses are mapped to keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Source code in FoSpy/blocks/blocks.py
clear_all_comments()
clear_comments()
copy()
Returns a deep-copy of self by serializing and reconstructing.
_calc_comments are not preserved during copy, but _calc_routines are. This prevents mutation of the comments when reconstructing.
Source code in FoSpy/blocks/blocks.py
default_key_order(deep=False)
Set to default attribute order for serialization.
Rearrange attribute order to the default order assigned by
build_validators
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deep
|
bool
|
When true, recursively calls |
False
|
Source code in FoSpy/blocks/blocks.py
dispatch_subclass(*args, **kwargs)
classmethod
dispatcher(dispatch_method)
staticmethod
Decorate a classmethod to dispatch to other subclasses.
Not normally used directly. See
setup_dispatch
decorator.
Source code in FoSpy/blocks/blocks.py
fill_staged_template(prop_name, **kwargs)
Source code in FoSpy/blocks/blocks.py
find_attachments()
Source code in FoSpy/blocks/blocks.py
find_fileblock()
Finds the parent file object.
Walks upward through _parent_block attributes until a
FileBlock instance is found and
returns that instance.
Source code in FoSpy/blocks/blocks.py
find_tempdir()
Find the parent file object's temporary directory.
Finds the temporary directory created by the
FileBlock instance containing this
block as one of its attributes.
Returns:
| Name | Type | Description |
|---|---|---|
tempdir |
tempfile.TemporaryDirectory
|
The temporary directory created by the parent file object |
Source code in FoSpy/blocks/blocks.py
find_temppath()
Find the parent file object's temporary directory path.
Similar to find_tempdir but
returns the corresponding pathlib.Path object instead.
Source code in FoSpy/blocks/blocks.py
get_id()
Returns an easily recognizable identifier for self. Non-unique.
get_parent_prop()
Source code in FoSpy/blocks/blocks.py
get_prop_dict()
Returns a dictionary mapping property names to their live object values.
Source code in FoSpy/blocks/blocks.py
get_prop_path()
Source code in FoSpy/blocks/blocks.py
get_req_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_req_validators,
but uses
_rename_validators
to align any renamed properties with their original validators.
Source code in FoSpy/blocks/blocks.py
get_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_validators,
but uses
_rename_validators
to align any renamed properties with their original validators. Also
adds any optional key overrides added by key$alias syntax.
Returns:
| Name | Type | Description |
|---|---|---|
vals |
dict
|
maps expected keys to validation routines. |
Source code in FoSpy/blocks/blocks.py
has_staged()
inject_defaults(blockDict, *args, **kwargs)
classmethod
inspect()
classmethod
key_to_idx(key, idx)
Reorder attributes for serialization.
Move any attribute name to a specific index in _key_order for
serialization order. The invisible "metadata" key is always refreshed
to the front of the list, so indices are effectively 1-based.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
name of attribute to reorder |
required |
idx
|
int
|
new index in _key_order |
required |
Source code in FoSpy/blocks/blocks.py
keys_to_end(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the end of _key_order to be
serialized last. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
keys_to_front(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the front of _key_order to be
serialized first. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
list_avail_routines(recursive=False, prefix='', abbreviated=False)
Lists all calc routines available to be added to self._calc_routines.
Non-abbreviated calc routine strings can be passed directly to
self.add_calc_routine()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
If True, recursively walks all attributes and appends results
from |
False
|
prefix
|
str
|
Used during recursion to build relative paths |
''
|
abbreviated
|
bool
|
optionally abbreviate recursively repeated routines for similar
objects into one line. This line cannot be passed to
|
False
|
Returns:
| Name | Type | Description |
|---|---|---|
routines |
list
|
list of strings describing _calc_routine-decorated methods.
Non-abbreviated calc routine strings can be passed directly to
|
Example:
mySyn.list_avail_routines()
## returns []
mySyn.list_avail_routines(recursive=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[0].add_MW',
## 'materials[1].add_MW',
## ... 6 total materials with the same calc_routine
## 'materials[5].add_MW'
## ]
mySyn.list_avail_routines(recursive=True, abbreviated=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[i].add_MW; i = [0, 1, 2, 3, 4, 5]'
## ]
Source code in FoSpy/blocks/blocks.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 | |
make_template(template_name, *args)
Converts self into a template of its original subclass.
Returns a copy of self as a template of its original subclass, with
specified fields replaced with template types. See
TemplateClass for
more information on template generation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_name
|
str
|
All templates require an identifying name. |
required |
*args
|
str
|
properties to clear and replace with template types. |
()
|
Source code in FoSpy/blocks/blocks.py
print_summary(mode='cli')
classmethod
reflex(serialize=True, include_temp_names=True, clean=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
refresh_attachments(new_copy=None, overwrite=None, **kwargs)
Source code in FoSpy/blocks/blocks.py
register_dispatch(registry_val, from_parent=None, setup_from_key=None, setup_allow_self=True, inherit_dispatch=False, defaults=None)
classmethod
Decorate a subclass to be dispatched from a parent class.
The subclass will also be decorated with the parent's setup_dispatch to set up its own dispatch parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry_val
|
The value to be found in a dispatched blockDict which will be mapped to the subclass in the parent class's registry. |
required | |
from_parent
|
type[BlockType]
|
The parent class to register the subclass to. Defaults to the class which calls the method, but may be overridden if a non-SingleBlock abstract class is the parent. |
None
|
setup_from_key
|
Passed as from_key to the parents setup_dispatch decorator. |
None
|
|
setup_allow_self
|
Passed as allow_self to the parent's setup_dispatch decorator. |
True
|
|
inherit_dispatch
|
Whether the decorated class should inherit its parent's
|
False
|
|
defaults
|
dict
|
Default values that should be injected into the blockDict when
trying to guarantee dispatching to the registered class.
Defaults to {}. If parent's from_key is public, defaults will be
updated with |
None
|
Source code in FoSpy/blocks/blocks.py
rename_block(old, new)
Source code in FoSpy/blocks/blocks.py
rename_dict()
serialize(keepListType=False, shallow=False, clean=False, **kwargs)
Return a recursively serialized dict representation of self.
Fully serialized SingleBlocks are a single dict that can be passed to
another constructor or emitted into lines for a FOS file. Serialized
values at any nest level are either dicts, lists, or strings to allow
full type-coersion when reconstructing or simplified emission when
writing files.
Serialized dict is deep copied to prevent object mutation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keepListType
|
bool
|
When True, maintains its current FOS printing mode (looped keys or explicit key:value lines), instead of explicit default |
False
|
shallow
|
bool
|
When True, no recursive serialization occurs. Recommended when serialization is used only to inspect top-level keys. |
False
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. Recommended for sending output to other formats like JSON. |
False
|
Private attributes starting with "_" are either skipped or unpacked in special cases:
-
_key_order: attributes are added to the serialized dict in the order they appear in this list. -
_calc_comments: calculated comments are attached to their mapped attribute after serialization to avoid mutation of object comments -
_calc_routines: A list of functions scheduled to be called right before serialization to update _calc_comments. Scheduling calc routines ensures that their calculated values are up-to-date. -
_meta: attributes of this container are given their own private_keys mapped byFoSpy.parsing.syntax.meta_keysin the serialized dict. -
_key_overrides: per-instance override mapping that tracks which unexpected attributes require $alias suffixes. -
_aliases: maps attribute names to alias tags used to emit $alias suffixed keys. -
_reserved: attribute names in reserved are non-private attributes which should not be serialized. This usually applies to theextattribute or methods attached after construction.
Source code in FoSpy/blocks/blocks.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 | |
set_dispatch(value=None, from_parent=None, from_key=None, allow_self=None)
classmethod
Source code in FoSpy/blocks/blocks.py
setup_dispatch(from_key=None, allow_self=True, _dispatch_from=None, _defaults={})
staticmethod
Decorate a class to dispatch to other classes during construction.
The decorated class's add_dispatch
method will be wrapped
into a new method,
dispatch_subclass,
which is decorator as a
dispatcher. The parent
class's from_key is found in the blockDict passed to the constructor,
and the value mapped to from_key is mapped to dispatchable subclasses
in the registry.
add_dispatch returns a dictionary of values that are injected into the
blockDict, either to be detected by dispatch, or to be delegated to the
constructor.
This decorator should only be used directly for the start of a dispatch
chain. For later dispatches, use
register_dispatch
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls
|
SingleBlock subclass
|
The class to be decorated. If provided, the decorator is most likely being called as a bare decorator. Otherwise, the decorators is being called with other keyword arguments and returns the modified decorator. |
None
|
from_key
|
str
|
The key to be located in the blockDict after optional injection
by |
None
|
allow_self
|
bool
|
When True, the decorated class will dispatch to itself if no subclasses can be found. When False, error is raised during construction if dispatchable subclass is not found. |
True
|
_dispatch_from
|
SingleBlock subclass
|
To be passed only by |
None
|
_defaults
|
dict
|
To be passed only by |
{}
|
Source code in FoSpy/blocks/blocks.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | |
stage_template(prop_name, template=None)
Source code in FoSpy/blocks/blocks.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | |
to_json(filepath=None, clean=True, indent=4, **kwargs)
Converts self into a JSON-formatted string or file.
Serializes and either returns as a JSON-formatted string or saves to a JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
pathlike
|
JSON file save destination. If |
None
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. FOS metadata has no impact on JSON format but may be useful to view in JSON for troubleshooting. |
True
|
indent
|
int
|
|
4
|
**kwargs
|
any
|
other arguments passed to |
{}
|
Source code in FoSpy/blocks/blocks.py
Reaction
Bases: SingleBlock
Represents information pertaining to the entire synthesis but not pertaining to FOS file metadata, such as nominal_mass or target_composition.
Methods:
| Name | Description |
|---|---|
TemplateClass |
Create a template for a subclass of |
__delattr__ |
|
__eq__ |
Check equality of two |
__getattr__ |
Check both |
__hash__ |
|
__init__ |
Constructs a SingleBlock object from a dictionary or another |
__new__ |
|
__setattr__ |
Assign an attribute with validation and controlled namespace behavior. |
_assign_and_inject |
Attaches attributes and methods to any value before assigning it as an |
_meta_to_front |
Moves metadata to the front of |
_rename_validators |
Realigns any renamed |
_resolve_relative_path |
Resolves a relative object path string into an object or function. |
_subprocess |
|
_update_src |
|
add_all_calc_routines |
Schedule all available calculation routines. |
add_block |
Adds an unexpected attribute with a validator mapped by |
add_calc_comment |
Add a calculated comment to be injected during serialization. |
add_calc_routine |
Schedules a calculated comment. |
add_comments |
Default behavior to be overwritten when attached to a parent block. |
add_dispatch |
|
add_nom_MW |
Attaches a comment to the nominal_formula with the molecular weight. |
build_req_validators |
Builds required keys and validators mapped to subclass. |
build_validators |
Builds expected keys and validators mapped to subclass. |
clear_all_comments |
|
clear_comments |
Clear comments attached to top-level attributes only. |
copy |
Returns a deep-copy of |
default_key_order |
Set to default attribute order for serialization. |
dispatch_subclass |
|
dispatcher |
Decorate a classmethod to dispatch to other subclasses. |
fill_staged_template |
|
find_attachments |
|
find_fileblock |
Finds the parent file object. |
find_tempdir |
Find the parent file object's temporary directory. |
find_temppath |
Find the parent file object's temporary directory path. |
get_id |
Returns an easily recognizable identifier for self. Non-unique. |
get_nom_MW |
Returns the molecular weight of nominal_formula |
get_parent_prop |
|
get_prop_dict |
Returns a dictionary mapping property names to their live object values. |
get_prop_path |
|
get_req_validators |
Overrides class validators with any renamed properties. |
get_validators |
Overrides class validators with any renamed properties. |
has_staged |
|
inject_defaults |
|
inspect |
|
key_to_idx |
Reorder attributes for serialization. |
keys_to_end |
Reorder attributes for serialization. |
keys_to_front |
Reorder attributes for serialization. |
list_avail_routines |
Lists all calc routines available to be added to |
make_template |
Converts |
print_summary |
|
reflex |
|
refresh_attachments |
|
register_dispatch |
Decorate a subclass to be dispatched from a parent class. |
rename_block |
|
rename_dict |
|
serialize |
Return a recursively serialized |
set_dispatch |
|
setup_dispatch |
Decorate a class to dispatch to other classes during construction. |
stage_template |
|
to_json |
Converts |
track_attachments |
|
Source code in FoSpy/blocks/metadata.py
_aliases = new_als
class-attribute
instance-attribute
_calc_comments = {}
instance-attribute
_calc_routines = []
instance-attribute
_constructed = True
instance-attribute
_id_key = None
class-attribute
instance-attribute
_key_order = []
instance-attribute
_key_overrides = {}
instance-attribute
_meta = SubContainer()
instance-attribute
_reserved = ['ext']
instance-attribute
_sourceDict = blockDict.copy()
instance-attribute
_staged_templates = {}
instance-attribute
dispatch = {}
class-attribute
instance-attribute
dispatch_allow_self = True
class-attribute
instance-attribute
dispatch_default = None
class-attribute
instance-attribute
dispatch_key = None
class-attribute
instance-attribute
ext = SubContainer()
instance-attribute
rename = rename
instance-attribute
TemplateClass(*args)
classmethod
Create a template for a subclass of SingleBlock.
Generates a hybridized subclass of the current block class and
TemplateBlock. Template
subclasses override original expected validators with either a
TemplateField,
TemplateBlock, or
TemplateList depending on the
type of the original validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
str
|
A list of properties to override as template types. |
()
|
Source code in FoSpy/blocks/blocks.py
__delattr__(attr)
__eq__(other, suppress_routine_paths=False)
Check equality of two SingleBlock objects.
Equality is checked by a deep difference of their serialized dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suppress_routine_paths
|
bool
|
Optional flag to still return true if the only differences found are in calculation routine metadata. Calculation routines are for user information only and may not be relevant for equality. |
False
|
Source code in FoSpy/blocks/blocks.py
__getattr__(name)
Check both self and self.ext for attribute before returning.
A matching attribute of self will be returned first, but if self has
no matching attribute, a matching attribute of self.ext can be
returned instead.
Source code in FoSpy/blocks/blocks.py
__init__(blockDict, *args, **kwargs)
Constructs a SingleBlock object from a dictionary or another SingleBlock.
Before construction, the
blockDict is unwrapped into a deep-copied dictionary and scanned to
determine which subclass should be constructed.
SingleBlocks are constructed recursively from an arbitrarily nested
dictionary. After popping the top-level rename
key, to see if any expected properties
have been renamed, all keys identified by
get_req_validators
must be in the top-level. Validation of all properties is delegated to
setattr.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
blockDict
|
dict
|
An arbitrarily nested dictionary mapping attribute names to values. It is possible to pass a blockDict already containing FoSpy objects, but validation routines may fail if objects are not the correct type. Best practice is to serialize all nested objects into lists, dicts, and strings to allow full type coersion. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
A key required by |
TypeError
|
The value passed as |
Source code in FoSpy/blocks/blocks.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
__new__(blockDict, *args, **kwargs)
Source code in FoSpy/blocks/blocks.py
__setattr__(name, value)
Assign an attribute with validation and controlled namespace behavior.
Contract
SingleBlock enforces type correctness and validator execution for
all public attributes defined for its subclass.
Required types and validators are mapped by subclass in
parsing.validation
Comment-mutating methods are attached to every object assigned to an
attribute. (See
add_comments)
Rules
- Private attributes (
_-prefixed) bypass validation. - Attributes with registered validators are processed through the validator before assignment.
- Attributes with required types are coerced by calling the type constructor when necessary.
- Unrecognized attributes can be assigned to a validator mapped to
an alias in
parsing.validation, using the syntaxname="name$alias". - Unrecognized attribute names are redirected as attributes of
self.ext.
Raises:
| Type | Description |
|---|---|
ValueError
|
|
Source code in FoSpy/blocks/blocks.py
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | |
_assign_and_inject(name, value, extended=False)
Attaches attributes and methods to any value before assigning it as an
attribute of self or self.ext.
Attributes Attached to Object
_parent_block: refers to self
Methods Attached to Object
Source code in FoSpy/blocks/blocks.py
_meta_to_front()
Moves metadata to the front of _key_order. Metadata will always be
serialized first, but being elsewhere in the order leads to unexpected
results when moving other keys to desired indices.
Source code in FoSpy/blocks/blocks.py
_rename_validators(validators)
Realigns any renamed attributes with their expected validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
validators
|
dict
|
A dictionary mapping attribute names to validators, returned by
either
|
required |
Source code in FoSpy/blocks/blocks.py
_resolve_relative_path(path)
Resolves a relative object path string into an object or function.
Example:
Source code in FoSpy/blocks/blocks.py
_subprocess(target, args=(), **kwargs)
_update_src()
add_all_calc_routines(recursive=False)
Schedule all available calculation routines.
Adds all available calc_routines to self._calc_routines using
list_avail_routines()
and
add_calc_routine().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
Optional recursion. See |
False
|
Source code in FoSpy/blocks/blocks.py
add_block(block_name, type_alias, value=[])
Adds an unexpected attribute with a validator mapped by type_alias.
Unexpected attributes not requiring a validator can be set directly
without using this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_name
|
str
|
new unexpected attribute name |
required |
type_alias
|
str
|
Alias mapped to the desired validator in
|
required |
Source code in FoSpy/blocks/blocks.py
add_calc_comment(key, comment, calc_id)
Add a calculated comment to be injected during serialization.
WARNING: This function can leave outdated calculations in comments after
serialization. Recommended to use add_calc_routine() instead.
Calculated comments are for user information and will be formatted to be skipped by the parser when reading the file. This is useful for comments that should be recalculated and refreshed during saving/serialization, like weight percentages or summaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
attribute to attach the calculated comment to. Comments appear above their attached attributes in FOS format. |
required |
comment
|
str
|
comment text without comment formatting (don't include // or !) |
required |
calc_id
|
str
|
unique identifier for the calculated comment. If it matches an existing comment (like when refreshing a value), the comment is overwritten |
required |
Source code in FoSpy/blocks/blocks.py
add_calc_routine(path, **kwargs)
Schedules a calculated comment.
Appends a
_calc_routine()-decorated
function to self._calc_routines to be run at
serialization.
Used to add calculated comments that should be refreshed during serialization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
a relative path string that can be resolved into a
|
required |
**kwargs
|
any
|
optional key word arguments to be passed to the function at path. |
{}
|
Raises:
| Type | Description |
|---|---|
TypeError
|
the attr or method at path is not registered as a _calc_routine |
Example:
mySyn.add_calc_routine("materials.add_weight_pcts", typ="reagent")
## mySyn.materials.add_weight_pcts(typ="reagent") is now scheduled
## to run at serialization
Source code in FoSpy/blocks/blocks.py
add_comments(*comments)
Default behavior to be overwritten when attached to a parent block.
If a SingleBlock is stored as an attribute of another SingleBlock,
this method will be overwritten by the parent's __setattr__.
Source code in FoSpy/blocks/blocks.py
add_dispatch(blockDict, dispatch_key, _wrapped=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
add_nom_MW()
Attaches a comment to the nominal_formula with the molecular weight.
Source code in FoSpy/blocks/metadata.py
build_req_validators()
classmethod
Builds required keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are required
during __init__, and their respective validation routines. Subclasses
are mapped to expected keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Returns:
| Name | Type | Description |
|---|---|---|
merged |
dict
|
Maps required keys to validation routines. Routines may be a class constructor or a func taking one arg. |
Example:
>>> SingleBlock.build_req_validators()
{
"name": str,
"type": str,
"formula": ChemFormula, # class constructor
"supplier": str,
"cas": str,
"form": str,
"env": str,
"ratio": validators.material.ratio # validator function
}
Source code in FoSpy/blocks/blocks.py
build_validators()
classmethod
Builds expected keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are expected
(required or optional), and their respective validation routines.
Subclasses are mapped to keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Source code in FoSpy/blocks/blocks.py
clear_all_comments()
clear_comments()
copy()
Returns a deep-copy of self by serializing and reconstructing.
_calc_comments are not preserved during copy, but _calc_routines are. This prevents mutation of the comments when reconstructing.
Source code in FoSpy/blocks/blocks.py
default_key_order(deep=False)
Set to default attribute order for serialization.
Rearrange attribute order to the default order assigned by
build_validators
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deep
|
bool
|
When true, recursively calls |
False
|
Source code in FoSpy/blocks/blocks.py
dispatch_subclass(*args, **kwargs)
classmethod
dispatcher(dispatch_method)
staticmethod
Decorate a classmethod to dispatch to other subclasses.
Not normally used directly. See
setup_dispatch
decorator.
Source code in FoSpy/blocks/blocks.py
fill_staged_template(prop_name, **kwargs)
Source code in FoSpy/blocks/blocks.py
find_attachments()
Source code in FoSpy/blocks/blocks.py
find_fileblock()
Finds the parent file object.
Walks upward through _parent_block attributes until a
FileBlock instance is found and
returns that instance.
Source code in FoSpy/blocks/blocks.py
find_tempdir()
Find the parent file object's temporary directory.
Finds the temporary directory created by the
FileBlock instance containing this
block as one of its attributes.
Returns:
| Name | Type | Description |
|---|---|---|
tempdir |
tempfile.TemporaryDirectory
|
The temporary directory created by the parent file object |
Source code in FoSpy/blocks/blocks.py
find_temppath()
Find the parent file object's temporary directory path.
Similar to find_tempdir but
returns the corresponding pathlib.Path object instead.
Source code in FoSpy/blocks/blocks.py
get_id()
Returns an easily recognizable identifier for self. Non-unique.
get_nom_MW()
get_parent_prop()
Source code in FoSpy/blocks/blocks.py
get_prop_dict()
Returns a dictionary mapping property names to their live object values.
Source code in FoSpy/blocks/blocks.py
get_prop_path()
Source code in FoSpy/blocks/blocks.py
get_req_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_req_validators,
but uses
_rename_validators
to align any renamed properties with their original validators.
Source code in FoSpy/blocks/blocks.py
get_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_validators,
but uses
_rename_validators
to align any renamed properties with their original validators. Also
adds any optional key overrides added by key$alias syntax.
Returns:
| Name | Type | Description |
|---|---|---|
vals |
dict
|
maps expected keys to validation routines. |
Source code in FoSpy/blocks/blocks.py
has_staged()
inject_defaults(blockDict, *args, **kwargs)
classmethod
inspect()
classmethod
key_to_idx(key, idx)
Reorder attributes for serialization.
Move any attribute name to a specific index in _key_order for
serialization order. The invisible "metadata" key is always refreshed
to the front of the list, so indices are effectively 1-based.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
name of attribute to reorder |
required |
idx
|
int
|
new index in _key_order |
required |
Source code in FoSpy/blocks/blocks.py
keys_to_end(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the end of _key_order to be
serialized last. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
keys_to_front(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the front of _key_order to be
serialized first. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
list_avail_routines(recursive=False, prefix='', abbreviated=False)
Lists all calc routines available to be added to self._calc_routines.
Non-abbreviated calc routine strings can be passed directly to
self.add_calc_routine()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
If True, recursively walks all attributes and appends results
from |
False
|
prefix
|
str
|
Used during recursion to build relative paths |
''
|
abbreviated
|
bool
|
optionally abbreviate recursively repeated routines for similar
objects into one line. This line cannot be passed to
|
False
|
Returns:
| Name | Type | Description |
|---|---|---|
routines |
list
|
list of strings describing _calc_routine-decorated methods.
Non-abbreviated calc routine strings can be passed directly to
|
Example:
mySyn.list_avail_routines()
## returns []
mySyn.list_avail_routines(recursive=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[0].add_MW',
## 'materials[1].add_MW',
## ... 6 total materials with the same calc_routine
## 'materials[5].add_MW'
## ]
mySyn.list_avail_routines(recursive=True, abbreviated=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[i].add_MW; i = [0, 1, 2, 3, 4, 5]'
## ]
Source code in FoSpy/blocks/blocks.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 | |
make_template(template_name, *args)
Converts self into a template of its original subclass.
Returns a copy of self as a template of its original subclass, with
specified fields replaced with template types. See
TemplateClass for
more information on template generation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_name
|
str
|
All templates require an identifying name. |
required |
*args
|
str
|
properties to clear and replace with template types. |
()
|
Source code in FoSpy/blocks/blocks.py
print_summary(mode='cli')
classmethod
reflex(serialize=True, include_temp_names=True, clean=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
refresh_attachments(new_copy=None, overwrite=None, **kwargs)
Source code in FoSpy/blocks/blocks.py
register_dispatch(registry_val, from_parent=None, setup_from_key=None, setup_allow_self=True, inherit_dispatch=False, defaults=None)
classmethod
Decorate a subclass to be dispatched from a parent class.
The subclass will also be decorated with the parent's setup_dispatch to set up its own dispatch parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry_val
|
The value to be found in a dispatched blockDict which will be mapped to the subclass in the parent class's registry. |
required | |
from_parent
|
type[BlockType]
|
The parent class to register the subclass to. Defaults to the class which calls the method, but may be overridden if a non-SingleBlock abstract class is the parent. |
None
|
setup_from_key
|
Passed as from_key to the parents setup_dispatch decorator. |
None
|
|
setup_allow_self
|
Passed as allow_self to the parent's setup_dispatch decorator. |
True
|
|
inherit_dispatch
|
Whether the decorated class should inherit its parent's
|
False
|
|
defaults
|
dict
|
Default values that should be injected into the blockDict when
trying to guarantee dispatching to the registered class.
Defaults to {}. If parent's from_key is public, defaults will be
updated with |
None
|
Source code in FoSpy/blocks/blocks.py
rename_block(old, new)
Source code in FoSpy/blocks/blocks.py
rename_dict()
serialize(keepListType=False, shallow=False, clean=False, **kwargs)
Return a recursively serialized dict representation of self.
Fully serialized SingleBlocks are a single dict that can be passed to
another constructor or emitted into lines for a FOS file. Serialized
values at any nest level are either dicts, lists, or strings to allow
full type-coersion when reconstructing or simplified emission when
writing files.
Serialized dict is deep copied to prevent object mutation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keepListType
|
bool
|
When True, maintains its current FOS printing mode (looped keys or explicit key:value lines), instead of explicit default |
False
|
shallow
|
bool
|
When True, no recursive serialization occurs. Recommended when serialization is used only to inspect top-level keys. |
False
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. Recommended for sending output to other formats like JSON. |
False
|
Private attributes starting with "_" are either skipped or unpacked in special cases:
-
_key_order: attributes are added to the serialized dict in the order they appear in this list. -
_calc_comments: calculated comments are attached to their mapped attribute after serialization to avoid mutation of object comments -
_calc_routines: A list of functions scheduled to be called right before serialization to update _calc_comments. Scheduling calc routines ensures that their calculated values are up-to-date. -
_meta: attributes of this container are given their own private_keys mapped byFoSpy.parsing.syntax.meta_keysin the serialized dict. -
_key_overrides: per-instance override mapping that tracks which unexpected attributes require $alias suffixes. -
_aliases: maps attribute names to alias tags used to emit $alias suffixed keys. -
_reserved: attribute names in reserved are non-private attributes which should not be serialized. This usually applies to theextattribute or methods attached after construction.
Source code in FoSpy/blocks/blocks.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 | |
set_dispatch(value=None, from_parent=None, from_key=None, allow_self=None)
classmethod
Source code in FoSpy/blocks/blocks.py
setup_dispatch(from_key=None, allow_self=True, _dispatch_from=None, _defaults={})
staticmethod
Decorate a class to dispatch to other classes during construction.
The decorated class's add_dispatch
method will be wrapped
into a new method,
dispatch_subclass,
which is decorator as a
dispatcher. The parent
class's from_key is found in the blockDict passed to the constructor,
and the value mapped to from_key is mapped to dispatchable subclasses
in the registry.
add_dispatch returns a dictionary of values that are injected into the
blockDict, either to be detected by dispatch, or to be delegated to the
constructor.
This decorator should only be used directly for the start of a dispatch
chain. For later dispatches, use
register_dispatch
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls
|
SingleBlock subclass
|
The class to be decorated. If provided, the decorator is most likely being called as a bare decorator. Otherwise, the decorators is being called with other keyword arguments and returns the modified decorator. |
None
|
from_key
|
str
|
The key to be located in the blockDict after optional injection
by |
None
|
allow_self
|
bool
|
When True, the decorated class will dispatch to itself if no subclasses can be found. When False, error is raised during construction if dispatchable subclass is not found. |
True
|
_dispatch_from
|
SingleBlock subclass
|
To be passed only by |
None
|
_defaults
|
dict
|
To be passed only by |
{}
|
Source code in FoSpy/blocks/blocks.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | |
stage_template(prop_name, template=None)
Source code in FoSpy/blocks/blocks.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | |
to_json(filepath=None, clean=True, indent=4, **kwargs)
Converts self into a JSON-formatted string or file.
Serializes and either returns as a JSON-formatted string or saves to a JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
pathlike
|
JSON file save destination. If |
None
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. FOS metadata has no impact on JSON format but may be useful to view in JSON for troubleshooting. |
True
|
indent
|
int
|
|
4
|
**kwargs
|
any
|
other arguments passed to |
{}
|
Source code in FoSpy/blocks/blocks.py
Rename
Bases: SingleBlock
Methods:
| Name | Description |
|---|---|
TemplateClass |
Create a template for a subclass of |
__delattr__ |
|
__eq__ |
Check equality of two |
__getattr__ |
Check both |
__hash__ |
|
__init__ |
Constructs a SingleBlock object from a dictionary or another |
__new__ |
|
__setattr__ |
Assign an attribute with validation and controlled namespace behavior. |
_assign_and_inject |
Attaches attributes and methods to any value before assigning it as an |
_meta_to_front |
Moves metadata to the front of |
_rename_validators |
Realigns any renamed |
_resolve_relative_path |
Resolves a relative object path string into an object or function. |
_subprocess |
|
_update_src |
|
add_all_calc_routines |
Schedule all available calculation routines. |
add_block |
Adds an unexpected attribute with a validator mapped by |
add_calc_comment |
Add a calculated comment to be injected during serialization. |
add_calc_routine |
Schedules a calculated comment. |
add_comments |
Default behavior to be overwritten when attached to a parent block. |
add_dispatch |
|
build_req_validators |
Builds required keys and validators mapped to subclass. |
build_validators |
Builds expected keys and validators mapped to subclass. |
clear_all_comments |
|
clear_comments |
Clear comments attached to top-level attributes only. |
copy |
Returns a deep-copy of |
default_key_order |
Set to default attribute order for serialization. |
dispatch_subclass |
|
dispatcher |
Decorate a classmethod to dispatch to other subclasses. |
fill_staged_template |
|
find_attachments |
|
find_fileblock |
Finds the parent file object. |
find_tempdir |
Find the parent file object's temporary directory. |
find_temppath |
Find the parent file object's temporary directory path. |
get_id |
Returns an easily recognizable identifier for self. Non-unique. |
get_parent_prop |
|
get_prop_dict |
Returns a dictionary mapping property names to their live object values. |
get_prop_path |
|
get_req_validators |
Overrides class validators with any renamed properties. |
get_validators |
Overrides class validators with any renamed properties. |
has_staged |
|
inject_defaults |
|
inspect |
|
key_to_idx |
Reorder attributes for serialization. |
keys_to_end |
Reorder attributes for serialization. |
keys_to_front |
Reorder attributes for serialization. |
list_avail_routines |
Lists all calc routines available to be added to |
make_template |
Converts |
print_summary |
|
reflex |
|
refresh_attachments |
|
register_dispatch |
Decorate a subclass to be dispatched from a parent class. |
rename_block |
|
rename_dict |
|
serialize |
Return a recursively serialized |
set_dispatch |
|
setup_dispatch |
Decorate a class to dispatch to other classes during construction. |
stage_template |
|
to_json |
Converts |
track_attachments |
|
_aliases = new_als
class-attribute
instance-attribute
_calc_comments = {}
instance-attribute
_calc_routines = []
instance-attribute
_constructed = True
instance-attribute
_id_key = None
class-attribute
instance-attribute
_key_order = []
instance-attribute
_key_overrides = {}
instance-attribute
_meta = SubContainer()
instance-attribute
_reserved = ['ext']
instance-attribute
_sourceDict = blockDict.copy()
instance-attribute
_staged_templates = {}
instance-attribute
allow_rename = False
class-attribute
instance-attribute
dispatch = {}
class-attribute
instance-attribute
dispatch_allow_self = True
class-attribute
instance-attribute
dispatch_default = None
class-attribute
instance-attribute
dispatch_key = None
class-attribute
instance-attribute
ext = SubContainer()
instance-attribute
rename = rename
instance-attribute
TemplateClass(*args)
classmethod
Create a template for a subclass of SingleBlock.
Generates a hybridized subclass of the current block class and
TemplateBlock. Template
subclasses override original expected validators with either a
TemplateField,
TemplateBlock, or
TemplateList depending on the
type of the original validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
str
|
A list of properties to override as template types. |
()
|
Source code in FoSpy/blocks/blocks.py
__delattr__(attr)
__eq__(other, suppress_routine_paths=False)
Check equality of two SingleBlock objects.
Equality is checked by a deep difference of their serialized dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suppress_routine_paths
|
bool
|
Optional flag to still return true if the only differences found are in calculation routine metadata. Calculation routines are for user information only and may not be relevant for equality. |
False
|
Source code in FoSpy/blocks/blocks.py
__getattr__(name)
Check both self and self.ext for attribute before returning.
A matching attribute of self will be returned first, but if self has
no matching attribute, a matching attribute of self.ext can be
returned instead.
Source code in FoSpy/blocks/blocks.py
__init__(blockDict, *args, **kwargs)
Constructs a SingleBlock object from a dictionary or another SingleBlock.
Before construction, the
blockDict is unwrapped into a deep-copied dictionary and scanned to
determine which subclass should be constructed.
SingleBlocks are constructed recursively from an arbitrarily nested
dictionary. After popping the top-level rename
key, to see if any expected properties
have been renamed, all keys identified by
get_req_validators
must be in the top-level. Validation of all properties is delegated to
setattr.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
blockDict
|
dict
|
An arbitrarily nested dictionary mapping attribute names to values. It is possible to pass a blockDict already containing FoSpy objects, but validation routines may fail if objects are not the correct type. Best practice is to serialize all nested objects into lists, dicts, and strings to allow full type coersion. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
A key required by |
TypeError
|
The value passed as |
Source code in FoSpy/blocks/blocks.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
__new__(blockDict, *args, **kwargs)
Source code in FoSpy/blocks/blocks.py
__setattr__(name, value)
Assign an attribute with validation and controlled namespace behavior.
Contract
SingleBlock enforces type correctness and validator execution for
all public attributes defined for its subclass.
Required types and validators are mapped by subclass in
parsing.validation
Comment-mutating methods are attached to every object assigned to an
attribute. (See
add_comments)
Rules
- Private attributes (
_-prefixed) bypass validation. - Attributes with registered validators are processed through the validator before assignment.
- Attributes with required types are coerced by calling the type constructor when necessary.
- Unrecognized attributes can be assigned to a validator mapped to
an alias in
parsing.validation, using the syntaxname="name$alias". - Unrecognized attribute names are redirected as attributes of
self.ext.
Raises:
| Type | Description |
|---|---|
ValueError
|
|
Source code in FoSpy/blocks/blocks.py
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | |
_assign_and_inject(name, value, extended=False)
Attaches attributes and methods to any value before assigning it as an
attribute of self or self.ext.
Attributes Attached to Object
_parent_block: refers to self
Methods Attached to Object
Source code in FoSpy/blocks/blocks.py
_meta_to_front()
Moves metadata to the front of _key_order. Metadata will always be
serialized first, but being elsewhere in the order leads to unexpected
results when moving other keys to desired indices.
Source code in FoSpy/blocks/blocks.py
_rename_validators(validators)
Realigns any renamed attributes with their expected validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
validators
|
dict
|
A dictionary mapping attribute names to validators, returned by
either
|
required |
Source code in FoSpy/blocks/blocks.py
_resolve_relative_path(path)
Resolves a relative object path string into an object or function.
Example:
Source code in FoSpy/blocks/blocks.py
_subprocess(target, args=(), **kwargs)
_update_src()
add_all_calc_routines(recursive=False)
Schedule all available calculation routines.
Adds all available calc_routines to self._calc_routines using
list_avail_routines()
and
add_calc_routine().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
Optional recursion. See |
False
|
Source code in FoSpy/blocks/blocks.py
add_block(block_name, type_alias, value=[])
Adds an unexpected attribute with a validator mapped by type_alias.
Unexpected attributes not requiring a validator can be set directly
without using this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_name
|
str
|
new unexpected attribute name |
required |
type_alias
|
str
|
Alias mapped to the desired validator in
|
required |
Source code in FoSpy/blocks/blocks.py
add_calc_comment(key, comment, calc_id)
Add a calculated comment to be injected during serialization.
WARNING: This function can leave outdated calculations in comments after
serialization. Recommended to use add_calc_routine() instead.
Calculated comments are for user information and will be formatted to be skipped by the parser when reading the file. This is useful for comments that should be recalculated and refreshed during saving/serialization, like weight percentages or summaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
attribute to attach the calculated comment to. Comments appear above their attached attributes in FOS format. |
required |
comment
|
str
|
comment text without comment formatting (don't include // or !) |
required |
calc_id
|
str
|
unique identifier for the calculated comment. If it matches an existing comment (like when refreshing a value), the comment is overwritten |
required |
Source code in FoSpy/blocks/blocks.py
add_calc_routine(path, **kwargs)
Schedules a calculated comment.
Appends a
_calc_routine()-decorated
function to self._calc_routines to be run at
serialization.
Used to add calculated comments that should be refreshed during serialization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
a relative path string that can be resolved into a
|
required |
**kwargs
|
any
|
optional key word arguments to be passed to the function at path. |
{}
|
Raises:
| Type | Description |
|---|---|
TypeError
|
the attr or method at path is not registered as a _calc_routine |
Example:
mySyn.add_calc_routine("materials.add_weight_pcts", typ="reagent")
## mySyn.materials.add_weight_pcts(typ="reagent") is now scheduled
## to run at serialization
Source code in FoSpy/blocks/blocks.py
add_comments(*comments)
Default behavior to be overwritten when attached to a parent block.
If a SingleBlock is stored as an attribute of another SingleBlock,
this method will be overwritten by the parent's __setattr__.
Source code in FoSpy/blocks/blocks.py
add_dispatch(blockDict, dispatch_key, _wrapped=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
build_req_validators()
classmethod
Builds required keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are required
during __init__, and their respective validation routines. Subclasses
are mapped to expected keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Returns:
| Name | Type | Description |
|---|---|---|
merged |
dict
|
Maps required keys to validation routines. Routines may be a class constructor or a func taking one arg. |
Example:
>>> SingleBlock.build_req_validators()
{
"name": str,
"type": str,
"formula": ChemFormula, # class constructor
"supplier": str,
"cas": str,
"form": str,
"env": str,
"ratio": validators.material.ratio # validator function
}
Source code in FoSpy/blocks/blocks.py
build_validators()
classmethod
Builds expected keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are expected
(required or optional), and their respective validation routines.
Subclasses are mapped to keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Source code in FoSpy/blocks/blocks.py
clear_all_comments()
clear_comments()
copy()
Returns a deep-copy of self by serializing and reconstructing.
_calc_comments are not preserved during copy, but _calc_routines are. This prevents mutation of the comments when reconstructing.
Source code in FoSpy/blocks/blocks.py
default_key_order(deep=False)
Set to default attribute order for serialization.
Rearrange attribute order to the default order assigned by
build_validators
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deep
|
bool
|
When true, recursively calls |
False
|
Source code in FoSpy/blocks/blocks.py
dispatch_subclass(*args, **kwargs)
classmethod
dispatcher(dispatch_method)
staticmethod
Decorate a classmethod to dispatch to other subclasses.
Not normally used directly. See
setup_dispatch
decorator.
Source code in FoSpy/blocks/blocks.py
fill_staged_template(prop_name, **kwargs)
Source code in FoSpy/blocks/blocks.py
find_attachments()
Source code in FoSpy/blocks/blocks.py
find_fileblock()
Finds the parent file object.
Walks upward through _parent_block attributes until a
FileBlock instance is found and
returns that instance.
Source code in FoSpy/blocks/blocks.py
find_tempdir()
Find the parent file object's temporary directory.
Finds the temporary directory created by the
FileBlock instance containing this
block as one of its attributes.
Returns:
| Name | Type | Description |
|---|---|---|
tempdir |
tempfile.TemporaryDirectory
|
The temporary directory created by the parent file object |
Source code in FoSpy/blocks/blocks.py
find_temppath()
Find the parent file object's temporary directory path.
Similar to find_tempdir but
returns the corresponding pathlib.Path object instead.
Source code in FoSpy/blocks/blocks.py
get_id()
Returns an easily recognizable identifier for self. Non-unique.
get_parent_prop()
Source code in FoSpy/blocks/blocks.py
get_prop_dict()
Returns a dictionary mapping property names to their live object values.
Source code in FoSpy/blocks/blocks.py
get_prop_path()
Source code in FoSpy/blocks/blocks.py
get_req_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_req_validators,
but uses
_rename_validators
to align any renamed properties with their original validators.
Source code in FoSpy/blocks/blocks.py
get_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_validators,
but uses
_rename_validators
to align any renamed properties with their original validators. Also
adds any optional key overrides added by key$alias syntax.
Returns:
| Name | Type | Description |
|---|---|---|
vals |
dict
|
maps expected keys to validation routines. |
Source code in FoSpy/blocks/blocks.py
has_staged()
inject_defaults(blockDict, *args, **kwargs)
classmethod
inspect()
classmethod
key_to_idx(key, idx)
Reorder attributes for serialization.
Move any attribute name to a specific index in _key_order for
serialization order. The invisible "metadata" key is always refreshed
to the front of the list, so indices are effectively 1-based.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
name of attribute to reorder |
required |
idx
|
int
|
new index in _key_order |
required |
Source code in FoSpy/blocks/blocks.py
keys_to_end(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the end of _key_order to be
serialized last. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
keys_to_front(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the front of _key_order to be
serialized first. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
list_avail_routines(recursive=False, prefix='', abbreviated=False)
Lists all calc routines available to be added to self._calc_routines.
Non-abbreviated calc routine strings can be passed directly to
self.add_calc_routine()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
If True, recursively walks all attributes and appends results
from |
False
|
prefix
|
str
|
Used during recursion to build relative paths |
''
|
abbreviated
|
bool
|
optionally abbreviate recursively repeated routines for similar
objects into one line. This line cannot be passed to
|
False
|
Returns:
| Name | Type | Description |
|---|---|---|
routines |
list
|
list of strings describing _calc_routine-decorated methods.
Non-abbreviated calc routine strings can be passed directly to
|
Example:
mySyn.list_avail_routines()
## returns []
mySyn.list_avail_routines(recursive=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[0].add_MW',
## 'materials[1].add_MW',
## ... 6 total materials with the same calc_routine
## 'materials[5].add_MW'
## ]
mySyn.list_avail_routines(recursive=True, abbreviated=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[i].add_MW; i = [0, 1, 2, 3, 4, 5]'
## ]
Source code in FoSpy/blocks/blocks.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 | |
make_template(template_name, *args)
Converts self into a template of its original subclass.
Returns a copy of self as a template of its original subclass, with
specified fields replaced with template types. See
TemplateClass for
more information on template generation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_name
|
str
|
All templates require an identifying name. |
required |
*args
|
str
|
properties to clear and replace with template types. |
()
|
Source code in FoSpy/blocks/blocks.py
print_summary(mode='cli')
classmethod
reflex(serialize=True, include_temp_names=True, clean=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
refresh_attachments(new_copy=None, overwrite=None, **kwargs)
Source code in FoSpy/blocks/blocks.py
register_dispatch(registry_val, from_parent=None, setup_from_key=None, setup_allow_self=True, inherit_dispatch=False, defaults=None)
classmethod
Decorate a subclass to be dispatched from a parent class.
The subclass will also be decorated with the parent's setup_dispatch to set up its own dispatch parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry_val
|
The value to be found in a dispatched blockDict which will be mapped to the subclass in the parent class's registry. |
required | |
from_parent
|
type[BlockType]
|
The parent class to register the subclass to. Defaults to the class which calls the method, but may be overridden if a non-SingleBlock abstract class is the parent. |
None
|
setup_from_key
|
Passed as from_key to the parents setup_dispatch decorator. |
None
|
|
setup_allow_self
|
Passed as allow_self to the parent's setup_dispatch decorator. |
True
|
|
inherit_dispatch
|
Whether the decorated class should inherit its parent's
|
False
|
|
defaults
|
dict
|
Default values that should be injected into the blockDict when
trying to guarantee dispatching to the registered class.
Defaults to {}. If parent's from_key is public, defaults will be
updated with |
None
|
Source code in FoSpy/blocks/blocks.py
rename_block(old, new)
Source code in FoSpy/blocks/blocks.py
rename_dict()
serialize(keepListType=False, shallow=False, clean=False, **kwargs)
Return a recursively serialized dict representation of self.
Fully serialized SingleBlocks are a single dict that can be passed to
another constructor or emitted into lines for a FOS file. Serialized
values at any nest level are either dicts, lists, or strings to allow
full type-coersion when reconstructing or simplified emission when
writing files.
Serialized dict is deep copied to prevent object mutation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keepListType
|
bool
|
When True, maintains its current FOS printing mode (looped keys or explicit key:value lines), instead of explicit default |
False
|
shallow
|
bool
|
When True, no recursive serialization occurs. Recommended when serialization is used only to inspect top-level keys. |
False
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. Recommended for sending output to other formats like JSON. |
False
|
Private attributes starting with "_" are either skipped or unpacked in special cases:
-
_key_order: attributes are added to the serialized dict in the order they appear in this list. -
_calc_comments: calculated comments are attached to their mapped attribute after serialization to avoid mutation of object comments -
_calc_routines: A list of functions scheduled to be called right before serialization to update _calc_comments. Scheduling calc routines ensures that their calculated values are up-to-date. -
_meta: attributes of this container are given their own private_keys mapped byFoSpy.parsing.syntax.meta_keysin the serialized dict. -
_key_overrides: per-instance override mapping that tracks which unexpected attributes require $alias suffixes. -
_aliases: maps attribute names to alias tags used to emit $alias suffixed keys. -
_reserved: attribute names in reserved are non-private attributes which should not be serialized. This usually applies to theextattribute or methods attached after construction.
Source code in FoSpy/blocks/blocks.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 | |
set_dispatch(value=None, from_parent=None, from_key=None, allow_self=None)
classmethod
Source code in FoSpy/blocks/blocks.py
setup_dispatch(from_key=None, allow_self=True, _dispatch_from=None, _defaults={})
staticmethod
Decorate a class to dispatch to other classes during construction.
The decorated class's add_dispatch
method will be wrapped
into a new method,
dispatch_subclass,
which is decorator as a
dispatcher. The parent
class's from_key is found in the blockDict passed to the constructor,
and the value mapped to from_key is mapped to dispatchable subclasses
in the registry.
add_dispatch returns a dictionary of values that are injected into the
blockDict, either to be detected by dispatch, or to be delegated to the
constructor.
This decorator should only be used directly for the start of a dispatch
chain. For later dispatches, use
register_dispatch
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls
|
SingleBlock subclass
|
The class to be decorated. If provided, the decorator is most likely being called as a bare decorator. Otherwise, the decorators is being called with other keyword arguments and returns the modified decorator. |
None
|
from_key
|
str
|
The key to be located in the blockDict after optional injection
by |
None
|
allow_self
|
bool
|
When True, the decorated class will dispatch to itself if no subclasses can be found. When False, error is raised during construction if dispatchable subclass is not found. |
True
|
_dispatch_from
|
SingleBlock subclass
|
To be passed only by |
None
|
_defaults
|
dict
|
To be passed only by |
{}
|
Source code in FoSpy/blocks/blocks.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | |
stage_template(prop_name, template=None)
Source code in FoSpy/blocks/blocks.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | |
to_json(filepath=None, clean=True, indent=4, **kwargs)
Converts self into a JSON-formatted string or file.
Serializes and either returns as a JSON-formatted string or saves to a JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
pathlike
|
JSON file save destination. If |
None
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. FOS metadata has no impact on JSON format but may be useful to view in JSON for troubleshooting. |
True
|
indent
|
int
|
|
4
|
**kwargs
|
any
|
other arguments passed to |
{}
|
Source code in FoSpy/blocks/blocks.py
SynthesisMeta
Bases: MetaData
Methods:
| Name | Description |
|---|---|
TemplateClass |
Create a template for a subclass of |
__delattr__ |
|
__eq__ |
Check equality of two |
__getattr__ |
Check both |
__hash__ |
|
__init__ |
Constructs a SingleBlock object from a dictionary or another |
__new__ |
|
__setattr__ |
Assign an attribute with validation and controlled namespace behavior. |
_assign_and_inject |
Attaches attributes and methods to any value before assigning it as an |
_meta_to_front |
Moves metadata to the front of |
_rename_validators |
Realigns any renamed |
_resolve_relative_path |
Resolves a relative object path string into an object or function. |
_subprocess |
|
_update_src |
|
add_all_calc_routines |
Schedule all available calculation routines. |
add_block |
Adds an unexpected attribute with a validator mapped by |
add_calc_comment |
Add a calculated comment to be injected during serialization. |
add_calc_routine |
Schedules a calculated comment. |
add_comments |
Default behavior to be overwritten when attached to a parent block. |
add_dispatch |
|
build_req_validators |
Builds required keys and validators mapped to subclass. |
build_validators |
Builds expected keys and validators mapped to subclass. |
clear_all_comments |
|
clear_comments |
Clear comments attached to top-level attributes only. |
copy |
Returns a deep-copy of |
default_key_order |
Set to default attribute order for serialization. |
dispatch_subclass |
|
dispatcher |
Decorate a classmethod to dispatch to other subclasses. |
fill_staged_template |
|
find_attachments |
|
find_fileblock |
Finds the parent file object. |
find_tempdir |
Find the parent file object's temporary directory. |
find_temppath |
Find the parent file object's temporary directory path. |
get_id |
Returns an easily recognizable identifier for self. Non-unique. |
get_parent_prop |
|
get_prop_dict |
Returns a dictionary mapping property names to their live object values. |
get_prop_path |
|
get_req_validators |
Overrides class validators with any renamed properties. |
get_validators |
Overrides class validators with any renamed properties. |
has_staged |
|
inject_defaults |
|
inspect |
|
key_to_idx |
Reorder attributes for serialization. |
keys_to_end |
Reorder attributes for serialization. |
keys_to_front |
Reorder attributes for serialization. |
list_avail_routines |
Lists all calc routines available to be added to |
make_template |
Converts |
print_summary |
|
reflex |
|
refresh_attachments |
|
register_dispatch |
Decorate a subclass to be dispatched from a parent class. |
rename_block |
|
rename_dict |
|
serialize |
Return a recursively serialized |
set_dispatch |
|
setup_dispatch |
Decorate a class to dispatch to other classes during construction. |
stage_template |
|
to_json |
Converts |
track_attachments |
|
Source code in FoSpy/blocks/metadata.py
_aliases = new_als
class-attribute
instance-attribute
_calc_comments = {}
instance-attribute
_calc_routines = []
instance-attribute
_constructed = True
instance-attribute
_id_key = None
class-attribute
instance-attribute
_key_order = []
instance-attribute
_key_overrides = {}
instance-attribute
_meta = SubContainer()
instance-attribute
_reserved = ['ext']
instance-attribute
_sourceDict = blockDict.copy()
instance-attribute
_staged_templates = {}
instance-attribute
allow_rename = False
class-attribute
instance-attribute
dispatch = {}
class-attribute
instance-attribute
dispatch_allow_self = True
class-attribute
instance-attribute
dispatch_default = None
class-attribute
instance-attribute
dispatch_key = None
class-attribute
instance-attribute
ext = SubContainer()
instance-attribute
rename = rename
instance-attribute
TemplateClass(*args)
classmethod
Create a template for a subclass of SingleBlock.
Generates a hybridized subclass of the current block class and
TemplateBlock. Template
subclasses override original expected validators with either a
TemplateField,
TemplateBlock, or
TemplateList depending on the
type of the original validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
str
|
A list of properties to override as template types. |
()
|
Source code in FoSpy/blocks/blocks.py
__delattr__(attr)
__eq__(other, suppress_routine_paths=False)
Check equality of two SingleBlock objects.
Equality is checked by a deep difference of their serialized dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suppress_routine_paths
|
bool
|
Optional flag to still return true if the only differences found are in calculation routine metadata. Calculation routines are for user information only and may not be relevant for equality. |
False
|
Source code in FoSpy/blocks/blocks.py
__getattr__(name)
Check both self and self.ext for attribute before returning.
A matching attribute of self will be returned first, but if self has
no matching attribute, a matching attribute of self.ext can be
returned instead.
Source code in FoSpy/blocks/blocks.py
__init__(blockDict, *args, **kwargs)
Constructs a SingleBlock object from a dictionary or another SingleBlock.
Before construction, the
blockDict is unwrapped into a deep-copied dictionary and scanned to
determine which subclass should be constructed.
SingleBlocks are constructed recursively from an arbitrarily nested
dictionary. After popping the top-level rename
key, to see if any expected properties
have been renamed, all keys identified by
get_req_validators
must be in the top-level. Validation of all properties is delegated to
setattr.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
blockDict
|
dict
|
An arbitrarily nested dictionary mapping attribute names to values. It is possible to pass a blockDict already containing FoSpy objects, but validation routines may fail if objects are not the correct type. Best practice is to serialize all nested objects into lists, dicts, and strings to allow full type coersion. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
A key required by |
TypeError
|
The value passed as |
Source code in FoSpy/blocks/blocks.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
__new__(blockDict, *args, **kwargs)
Source code in FoSpy/blocks/blocks.py
__setattr__(name, value)
Assign an attribute with validation and controlled namespace behavior.
Contract
SingleBlock enforces type correctness and validator execution for
all public attributes defined for its subclass.
Required types and validators are mapped by subclass in
parsing.validation
Comment-mutating methods are attached to every object assigned to an
attribute. (See
add_comments)
Rules
- Private attributes (
_-prefixed) bypass validation. - Attributes with registered validators are processed through the validator before assignment.
- Attributes with required types are coerced by calling the type constructor when necessary.
- Unrecognized attributes can be assigned to a validator mapped to
an alias in
parsing.validation, using the syntaxname="name$alias". - Unrecognized attribute names are redirected as attributes of
self.ext.
Raises:
| Type | Description |
|---|---|
ValueError
|
|
Source code in FoSpy/blocks/blocks.py
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | |
_assign_and_inject(name, value, extended=False)
Attaches attributes and methods to any value before assigning it as an
attribute of self or self.ext.
Attributes Attached to Object
_parent_block: refers to self
Methods Attached to Object
Source code in FoSpy/blocks/blocks.py
_meta_to_front()
Moves metadata to the front of _key_order. Metadata will always be
serialized first, but being elsewhere in the order leads to unexpected
results when moving other keys to desired indices.
Source code in FoSpy/blocks/blocks.py
_rename_validators(validators)
Realigns any renamed attributes with their expected validator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
validators
|
dict
|
A dictionary mapping attribute names to validators, returned by
either
|
required |
Source code in FoSpy/blocks/blocks.py
_resolve_relative_path(path)
Resolves a relative object path string into an object or function.
Example:
Source code in FoSpy/blocks/blocks.py
_subprocess(target, args=(), **kwargs)
_update_src()
add_all_calc_routines(recursive=False)
Schedule all available calculation routines.
Adds all available calc_routines to self._calc_routines using
list_avail_routines()
and
add_calc_routine().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
Optional recursion. See |
False
|
Source code in FoSpy/blocks/blocks.py
add_block(block_name, type_alias, value=[])
Adds an unexpected attribute with a validator mapped by type_alias.
Unexpected attributes not requiring a validator can be set directly
without using this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_name
|
str
|
new unexpected attribute name |
required |
type_alias
|
str
|
Alias mapped to the desired validator in
|
required |
Source code in FoSpy/blocks/blocks.py
add_calc_comment(key, comment, calc_id)
Add a calculated comment to be injected during serialization.
WARNING: This function can leave outdated calculations in comments after
serialization. Recommended to use add_calc_routine() instead.
Calculated comments are for user information and will be formatted to be skipped by the parser when reading the file. This is useful for comments that should be recalculated and refreshed during saving/serialization, like weight percentages or summaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
attribute to attach the calculated comment to. Comments appear above their attached attributes in FOS format. |
required |
comment
|
str
|
comment text without comment formatting (don't include // or !) |
required |
calc_id
|
str
|
unique identifier for the calculated comment. If it matches an existing comment (like when refreshing a value), the comment is overwritten |
required |
Source code in FoSpy/blocks/blocks.py
add_calc_routine(path, **kwargs)
Schedules a calculated comment.
Appends a
_calc_routine()-decorated
function to self._calc_routines to be run at
serialization.
Used to add calculated comments that should be refreshed during serialization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
a relative path string that can be resolved into a
|
required |
**kwargs
|
any
|
optional key word arguments to be passed to the function at path. |
{}
|
Raises:
| Type | Description |
|---|---|
TypeError
|
the attr or method at path is not registered as a _calc_routine |
Example:
mySyn.add_calc_routine("materials.add_weight_pcts", typ="reagent")
## mySyn.materials.add_weight_pcts(typ="reagent") is now scheduled
## to run at serialization
Source code in FoSpy/blocks/blocks.py
add_comments(*comments)
Default behavior to be overwritten when attached to a parent block.
If a SingleBlock is stored as an attribute of another SingleBlock,
this method will be overwritten by the parent's __setattr__.
Source code in FoSpy/blocks/blocks.py
add_dispatch(blockDict, dispatch_key, _wrapped=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
build_req_validators()
classmethod
Builds required keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are required
during __init__, and their respective validation routines. Subclasses
are mapped to expected keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Returns:
| Name | Type | Description |
|---|---|---|
merged |
dict
|
Maps required keys to validation routines. Routines may be a class constructor or a func taking one arg. |
Example:
>>> SingleBlock.build_req_validators()
{
"name": str,
"type": str,
"formula": ChemFormula, # class constructor
"supplier": str,
"cas": str,
"form": str,
"env": str,
"ratio": validators.material.ratio # validator function
}
Source code in FoSpy/blocks/blocks.py
build_validators()
classmethod
Builds expected keys and validators mapped to subclass.
Walks all parent classes and builds a map of all keys that are expected
(required or optional), and their respective validation routines.
Subclasses are mapped to keys and validations in
parsing.validation. Subclass validations
override parent classes when applicable.
Source code in FoSpy/blocks/blocks.py
clear_all_comments()
clear_comments()
copy()
Returns a deep-copy of self by serializing and reconstructing.
_calc_comments are not preserved during copy, but _calc_routines are. This prevents mutation of the comments when reconstructing.
Source code in FoSpy/blocks/blocks.py
default_key_order(deep=False)
Set to default attribute order for serialization.
Rearrange attribute order to the default order assigned by
build_validators
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deep
|
bool
|
When true, recursively calls |
False
|
Source code in FoSpy/blocks/blocks.py
dispatch_subclass(*args, **kwargs)
classmethod
dispatcher(dispatch_method)
staticmethod
Decorate a classmethod to dispatch to other subclasses.
Not normally used directly. See
setup_dispatch
decorator.
Source code in FoSpy/blocks/blocks.py
fill_staged_template(prop_name, **kwargs)
Source code in FoSpy/blocks/blocks.py
find_attachments()
Source code in FoSpy/blocks/blocks.py
find_fileblock()
Finds the parent file object.
Walks upward through _parent_block attributes until a
FileBlock instance is found and
returns that instance.
Source code in FoSpy/blocks/blocks.py
find_tempdir()
Find the parent file object's temporary directory.
Finds the temporary directory created by the
FileBlock instance containing this
block as one of its attributes.
Returns:
| Name | Type | Description |
|---|---|---|
tempdir |
tempfile.TemporaryDirectory
|
The temporary directory created by the parent file object |
Source code in FoSpy/blocks/blocks.py
find_temppath()
Find the parent file object's temporary directory path.
Similar to find_tempdir but
returns the corresponding pathlib.Path object instead.
Source code in FoSpy/blocks/blocks.py
get_id()
Returns an easily recognizable identifier for self. Non-unique.
get_parent_prop()
Source code in FoSpy/blocks/blocks.py
get_prop_dict()
Returns a dictionary mapping property names to their live object values.
Source code in FoSpy/blocks/blocks.py
get_prop_path()
Source code in FoSpy/blocks/blocks.py
get_req_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_req_validators,
but uses
_rename_validators
to align any renamed properties with their original validators.
Source code in FoSpy/blocks/blocks.py
get_validators()
Overrides class validators with any renamed properties.
Similar to class method:
build_validators,
but uses
_rename_validators
to align any renamed properties with their original validators. Also
adds any optional key overrides added by key$alias syntax.
Returns:
| Name | Type | Description |
|---|---|---|
vals |
dict
|
maps expected keys to validation routines. |
Source code in FoSpy/blocks/blocks.py
has_staged()
inject_defaults(blockDict, *args, **kwargs)
classmethod
inspect()
classmethod
key_to_idx(key, idx)
Reorder attributes for serialization.
Move any attribute name to a specific index in _key_order for
serialization order. The invisible "metadata" key is always refreshed
to the front of the list, so indices are effectively 1-based.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
name of attribute to reorder |
required |
idx
|
int
|
new index in _key_order |
required |
Source code in FoSpy/blocks/blocks.py
keys_to_end(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the end of _key_order to be
serialized last. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
keys_to_front(*args)
Reorder attributes for serialization.
Move any attribute names in *args to the front of _key_order to be
serialized first. Order within *args is maintained in result.
Source code in FoSpy/blocks/blocks.py
list_avail_routines(recursive=False, prefix='', abbreviated=False)
Lists all calc routines available to be added to self._calc_routines.
Non-abbreviated calc routine strings can be passed directly to
self.add_calc_routine()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recursive
|
bool
|
If True, recursively walks all attributes and appends results
from |
False
|
prefix
|
str
|
Used during recursion to build relative paths |
''
|
abbreviated
|
bool
|
optionally abbreviate recursively repeated routines for similar
objects into one line. This line cannot be passed to
|
False
|
Returns:
| Name | Type | Description |
|---|---|---|
routines |
list
|
list of strings describing _calc_routine-decorated methods.
Non-abbreviated calc routine strings can be passed directly to
|
Example:
mySyn.list_avail_routines()
## returns []
mySyn.list_avail_routines(recursive=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[0].add_MW',
## 'materials[1].add_MW',
## ... 6 total materials with the same calc_routine
## 'materials[5].add_MW'
## ]
mySyn.list_avail_routines(recursive=True, abbreviated=True)
## returns [
## 'reaction.add_nom_MW',
## 'materials.add_weight_pcts',
## 'materials[i].add_MW; i = [0, 1, 2, 3, 4, 5]'
## ]
Source code in FoSpy/blocks/blocks.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 | |
make_template(template_name, *args)
Converts self into a template of its original subclass.
Returns a copy of self as a template of its original subclass, with
specified fields replaced with template types. See
TemplateClass for
more information on template generation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_name
|
str
|
All templates require an identifying name. |
required |
*args
|
str
|
properties to clear and replace with template types. |
()
|
Source code in FoSpy/blocks/blocks.py
print_summary(mode='cli')
classmethod
reflex(serialize=True, include_temp_names=True, clean=False, **kwargs)
classmethod
Source code in FoSpy/blocks/blocks.py
refresh_attachments(new_copy=None, overwrite=None, **kwargs)
Source code in FoSpy/blocks/blocks.py
register_dispatch(registry_val, from_parent=None, setup_from_key=None, setup_allow_self=True, inherit_dispatch=False, defaults=None)
classmethod
Decorate a subclass to be dispatched from a parent class.
The subclass will also be decorated with the parent's setup_dispatch to set up its own dispatch parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry_val
|
The value to be found in a dispatched blockDict which will be mapped to the subclass in the parent class's registry. |
required | |
from_parent
|
type[BlockType]
|
The parent class to register the subclass to. Defaults to the class which calls the method, but may be overridden if a non-SingleBlock abstract class is the parent. |
None
|
setup_from_key
|
Passed as from_key to the parents setup_dispatch decorator. |
None
|
|
setup_allow_self
|
Passed as allow_self to the parent's setup_dispatch decorator. |
True
|
|
inherit_dispatch
|
Whether the decorated class should inherit its parent's
|
False
|
|
defaults
|
dict
|
Default values that should be injected into the blockDict when
trying to guarantee dispatching to the registered class.
Defaults to {}. If parent's from_key is public, defaults will be
updated with |
None
|
Source code in FoSpy/blocks/blocks.py
rename_block(old, new)
Source code in FoSpy/blocks/blocks.py
rename_dict()
serialize(keepListType=False, shallow=False, clean=False, **kwargs)
Return a recursively serialized dict representation of self.
Fully serialized SingleBlocks are a single dict that can be passed to
another constructor or emitted into lines for a FOS file. Serialized
values at any nest level are either dicts, lists, or strings to allow
full type-coersion when reconstructing or simplified emission when
writing files.
Serialized dict is deep copied to prevent object mutation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keepListType
|
bool
|
When True, maintains its current FOS printing mode (looped keys or explicit key:value lines), instead of explicit default |
False
|
shallow
|
bool
|
When True, no recursive serialization occurs. Recommended when serialization is used only to inspect top-level keys. |
False
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. Recommended for sending output to other formats like JSON. |
False
|
Private attributes starting with "_" are either skipped or unpacked in special cases:
-
_key_order: attributes are added to the serialized dict in the order they appear in this list. -
_calc_comments: calculated comments are attached to their mapped attribute after serialization to avoid mutation of object comments -
_calc_routines: A list of functions scheduled to be called right before serialization to update _calc_comments. Scheduling calc routines ensures that their calculated values are up-to-date. -
_meta: attributes of this container are given their own private_keys mapped byFoSpy.parsing.syntax.meta_keysin the serialized dict. -
_key_overrides: per-instance override mapping that tracks which unexpected attributes require $alias suffixes. -
_aliases: maps attribute names to alias tags used to emit $alias suffixed keys. -
_reserved: attribute names in reserved are non-private attributes which should not be serialized. This usually applies to theextattribute or methods attached after construction.
Source code in FoSpy/blocks/blocks.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 | |
set_dispatch(value=None, from_parent=None, from_key=None, allow_self=None)
classmethod
Source code in FoSpy/blocks/blocks.py
setup_dispatch(from_key=None, allow_self=True, _dispatch_from=None, _defaults={})
staticmethod
Decorate a class to dispatch to other classes during construction.
The decorated class's add_dispatch
method will be wrapped
into a new method,
dispatch_subclass,
which is decorator as a
dispatcher. The parent
class's from_key is found in the blockDict passed to the constructor,
and the value mapped to from_key is mapped to dispatchable subclasses
in the registry.
add_dispatch returns a dictionary of values that are injected into the
blockDict, either to be detected by dispatch, or to be delegated to the
constructor.
This decorator should only be used directly for the start of a dispatch
chain. For later dispatches, use
register_dispatch
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls
|
SingleBlock subclass
|
The class to be decorated. If provided, the decorator is most likely being called as a bare decorator. Otherwise, the decorators is being called with other keyword arguments and returns the modified decorator. |
None
|
from_key
|
str
|
The key to be located in the blockDict after optional injection
by |
None
|
allow_self
|
bool
|
When True, the decorated class will dispatch to itself if no subclasses can be found. When False, error is raised during construction if dispatchable subclass is not found. |
True
|
_dispatch_from
|
SingleBlock subclass
|
To be passed only by |
None
|
_defaults
|
dict
|
To be passed only by |
{}
|
Source code in FoSpy/blocks/blocks.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | |
stage_template(prop_name, template=None)
Source code in FoSpy/blocks/blocks.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | |
to_json(filepath=None, clean=True, indent=4, **kwargs)
Converts self into a JSON-formatted string or file.
Serializes and either returns as a JSON-formatted string or saves to a JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
pathlike
|
JSON file save destination. If |
None
|
clean
|
bool
|
When True, no FOS format read/write metadata is included in the serial. FOS metadata has no impact on JSON format but may be useful to view in JSON for troubleshooting. |
True
|
indent
|
int
|
|
4
|
**kwargs
|
any
|
other arguments passed to |
{}
|