SheafSystem
0.0.0.0
|
The default name space; a poset which contains other posets as members. More...
#include <namespace_poset.h>
Public Member Functions | |
template<typename P > | |
P & | member_poset (pod_index_type xhub_id, bool xauto_access) const |
template<typename P > | |
P & | member_poset (const scoped_index &xid, bool xauto_access) const |
template<typename P > | |
P & | member_poset (const poset_path &xpath, bool xauto_access) const |
template<typename P > | |
bool | contains_poset (pod_index_type xhub_id, bool xauto_access) const |
template<typename P > | |
bool | contains_poset (const scoped_index &xid, bool xauto_access) const |
template<typename P > | |
bool | contains_poset (const poset_path &xpath, bool xauto_access) const |
Public Member Functions inherited from sheaf::poset_state_handle | |
poset_path | member_path (pod_index_type xmbr_hub_id, bool xauto_access) const |
A path for the member with hub id xmbr_hub_id. More... | |
virtual std::string | member_name (pod_index_type xmbr_hub_id, bool xauto_access=false) const |
A name for the member with hub id xmbr_hub_id. More... | |
std::string | member_name (const scoped_index &xmbr_id, bool xauto_access=false) const |
A name for the member with id xmbr_id. More... | |
void | all_member_names (pod_index_type xmbr_hub_id, block< std::string > &xresult, bool xauto_access=false) const |
All the names for the member with hub id xmbr_hub_id. More... | |
void | all_member_names (const scoped_index &xmbr_id, block< std::string > &xresult, bool xauto_access=false) const |
All the names for the member with id xmbr_id. More... | |
size_type | member_name_ct (pod_index_type xmbr_hub_id, bool xauto_access) const |
The number of names for the member with hub id xmbr_hub_id. More... | |
size_type | member_name_ct (const scoped_index &xmbr_id, bool xauto_access) const |
The number of names for the member with id xmbr_id. More... | |
bool | member_has_name (pod_index_type xmbr_hub_id, const std::string &xname, bool xauto_access=false) const |
True if xname is a name for the member with hub id xmbr_hub_id. More... | |
bool | member_has_name (const scoped_index &xmbr_hub_id, const std::string &xname, bool xauto_access=false) const |
True if xname is a name for the member with id xmbr_id. More... | |
virtual void | put_member_name (pod_index_type xmbr_hub_id, const std::string &xname, bool xunique, bool xauto_access=false) |
Make xname a name for the member with hub id xmbr_hub_id. if xunique, make xname the only name. More... | |
void | put_member_name (const scoped_index &xmbr_id, const std::string &xname, bool xunique, bool xauto_access=false) |
Make xname a name for the member with id xmbr_id. if xunique, make xname the only name. More... | |
void | delete_member_name (const std::string &xname, bool xauto_access=false) |
Make xname not a name for any member. More... | |
void | delete_all_member_names (pod_index_type xmbr_hub_id, bool xauto_access=false) |
Delete all names for the member with hub id xmbr_hub_id. More... | |
void | delete_all_member_names (const scoped_index &xmbr_id, bool xauto_access=false) |
Delete all names for the member with id xmbr_id. More... | |
virtual schema_poset_member & | schema () |
The schema for this poset (mutable version). More... | |
virtual const schema_poset_member & | schema () const |
The schema for this poset (const version). More... | |
schema_poset_member & | schema (bool xauto_access) |
The schema for this poset, auto_accessible (mutable version). More... | |
const schema_poset_member & | schema (bool xauto_access) const |
The schema for this poset, auto_accessible (const version). More... | |
virtual bool | schema_is_ancestor_of (const schema_poset_member *xother_schema) const |
True if xother_schema conforms to the type of schema required by this. More... | |
bool | schema_is (const std::string &xschema_name) const |
True if the schema of this has name xname. More... | |
bool | same_schema (const poset_state_handle *xother) const |
True if other has the same schema as this. More... | |
bool | same_schema (const abstract_poset_member *xother) const |
True if other has the same schema as this. More... | |
bool | in_jim_edit_mode () const |
True if editing jims and jim order relation is allowed. More... | |
int | jim_edit_depth (bool xauto_access) const |
Number of times begin_jim edit_mode has been called without matching end_jim_edit_mode. More... | |
bool | is_external () const |
True if this has a corresponding member in a name space, but is not yet attached to a state. (This condition implies the name space has been imported from some external source, but the poset has not yet been imported.) More... | |
virtual bool | is_attached () const |
True if this is attached to a state. More... | |
bool | is_same_state (const poset_state_handle *xother) const |
True if this is attached to the same state as xother. More... | |
namespace_poset * | host () const |
The namespace this poset resides in. Obsolete; use name_space() instead. More... | |
namespace_poset * | name_space () const |
The namespace this poset resides in. More... | |
const scoped_index & | index () const |
The member index of this poset within the namespace host() More... | |
virtual pod_index_type | new_member (bool xis_jim, pod_index_type xtuple_hub_id) |
Create a disconnected member with is_jim == xis_jim and the dof tuple identified by hub id xtuple_hub_id. WARNING: this routine leaves a disconnected member in the poset and hence leaves the poset in an invalid state. The client must properly link the member created by this routine using new_link in order to return the poset to a valid state. More... | |
void | new_member (bool xis_jim, const scoped_index &xtuple_id, scoped_index &result) |
Create a disconnected member with is_jim == xis_jim and the dof tuple identified by id xtuple_id. WARNING: this routine leaves a disconnected member in the poset and hence leaves the poset in an invalid state. The client must properly link the member created by this routine using new_link in order to return the poset to a valid state. More... | |
virtual pod_index_type | new_member (bool xis_jim, poset_dof_map *xdof_map=0, bool xcopy_dof_map=false) |
Create a disconnected member with is_jim == xis_jim. If xdof_map != 0, the new member uses it for dof storage, otherwise it creates an instance of array_poset_dof_map. WARNING: this routine leaves a disconnected member in the poset and hence leaves the poset in an invalid state. The client must properly link the member created by this routine using new_link in order to return the poset to a valid state. More... | |
void | new_member (bool xis_jim, poset_dof_map *xdof_map, bool xcopy_dof_map, scoped_index &result) |
Create a disconnected member with is_jim == xis_jim. If xdof_map != 0, the new member uses it for dof storage, otherwise it creates an instance of array_poset_dof_map. WARNING: this routine leaves a disconnected member in the poset and hence leaves the poset in an invalid state. The client must properly link the member created by this routine using new_link in order to return the poset to a valid state. More... | |
virtual pod_index_type | new_member_interval (const std::string &xinterval_type, size_type xsize, const block< pod_index_type > &xtuple_hub_ids, const block< pod_index_type > &xdata) |
Create a disconnected member interval of type xinterval_type with size xsize, dof tuple ids xtuple_hub_ids, and interval type specific private data xdata. WARNING: this routine leaves a disconnected member in the poset and hence leaves the poset in an invalid state. The client must properly link the member created by this routine using new_link in order to return the poset to a valid state. More... | |
void | new_member_interval (const std::string &xinterval_type, size_type xsize, const block< pod_index_type > &xtuple_hub_ids, const block< pod_index_type > &xdata, scoped_index &result) |
Create a disconnected member interval of type xinterval_type with size xsize, dof tuple hub ids xtuple_hub_ids, and interval type specific private data xdata. WARNING: this routine leaves a disconnected member in the poset and hence leaves the poset in an invalid state. The client must properly link the member created by this routine using new_link in order to return the poset to a valid state. More... | |
virtual void | delete_member (pod_index_type xmbr_hub_id) |
Delete the member with hub id xmbr_hub_id. Warning: this routine does not delete links; it will leave any links to this member dangling. Use abstract_poset_member::delete_state unless you know what you are doing. More... | |
void | delete_member (const scoped_index &xmbr_id) |
Delete the member with id xmbr_id. Warning: this routine does not delete links; it will leave any links to this member dangling. Use abstract_poset_member::delete_state unless you know what you are doing. More... | |
virtual int | member_ct () const |
The number of members of this poset. More... | |
virtual int | standard_member_ct () const |
The number of standard members automatically allocated by the constructor. More... | |
bool | has_standard_member_ct () const |
True if poset is in its initial state, that is, it contains just the standard members. More... | |
virtual scoped_index | member_index_ub () const |
The upper bound on the member_index;. More... | |
index_iterator | member_iterator () const |
virtual bool | contains_member (pod_index_type xmbr_hub_id, bool xauto_access=true) const |
True if some version of this poset contains poset member with hub id xmbr_hub_id. More... | |
bool | contains_member (const scoped_index &xmbr_id, bool xauto_access=true) const |
True if some version of this poset contains poset member with id xmbr_id. More... | |
virtual bool | contains_member (pod_index_type xmbr_hub_id, int xversion, bool xauto_access=true) const |
True if version xversion of this poset contains poset member with hub id xmbr_hub_id. More... | |
bool | contains_member (const scoped_index &xmbr_id, int xversion, bool xauto_access=true) const |
True if version xversion of this poset contains poset member with id xmbr_id. More... | |
virtual bool | contains_member (const std::string &xname, bool xauto_access=true) const |
True if this poset contains a member with name xname. More... | |
bool | contains_member (const abstract_poset_member *xmbr, bool xauto_access=true) const |
True if this poset contains xmbr. More... | |
bool | contains_members (const scoped_index *xmbrs, int xmbrs_ct, bool xauto_access=true) const |
True if this poset contains poset member(s) with indices in xmbrs. More... | |
bool | contains_members (pod_index_type *xmbrs, int xmbrs_ct, bool xauto_access=true) const |
True if this poset contains poset member(s) with indices in xmbrs. More... | |
bool | contains_members (const std::string *xnames, int xnames_ct, bool xauto_access=true) const |
True if this poset contains poset member(s) with names in xnames. More... | |
bool | contains_members (const block< pod_index_type > &p, bool xauto_access=true) const |
True if this poset contains poset members with indices in p. More... | |
bool | contains_members (const block< scoped_index > &p, bool xauto_access=true) const |
True if this poset contains poset members with indices in p. More... | |
bool | contains_members (const block< std::string > &p, bool xauto_access=true) const |
True if this poset contains poset members with names in p. More... | |
bool | is_empty () const |
True if this poset is empty. More... | |
virtual bool | is_jim (pod_index_type xmbr_hub_id, bool xin_current_version=true) const |
True if the member with hub id xmbr_hub_id is a jim in the current version (xin_current_version == true) or in some version (xin_current_version == false). More... | |
bool | is_jim (const scoped_index &xmbr_id, bool xin_current_version=true) const |
True if the member with id xmbr_id is a jim in the current version (xin_current_version == true) or in some version (xin_current_version == false). More... | |
bool | is_jim (const std::string &xname, bool xin_current_version=true) const |
True if the member with name xname is a jim in the current version (xin_current_version == true) or in some version (xin_current_version == false). More... | |
virtual bool | is_atom (pod_index_type xmbr_hub_id) const |
True if the member with hub id xmbr_hub_id covers the bottom. More... | |
bool | is_atom (const scoped_index &xmbr_id) const |
True if the member with id xmbr_id covers the bottom. More... | |
abstract_poset_member & | top () |
The top member of the poset (mutable version) More... | |
const abstract_poset_member & | top () const |
The top member of the poset (const version) More... | |
abstract_poset_member & | bottom () |
The bottom member of the poset (mutable version) More... | |
const abstract_poset_member & | bottom () const |
The bottom member of the poset (const version) More... | |
virtual size_type | subposet_ct () const |
The number of subposets of this poset. More... | |
virtual int | standard_subposet_ct () const |
The number of standard subposets automatically allocated by the constructor. More... | |
bool | has_standard_subposet_ct () const |
True if poset is in its initial state, that is, it contains just the standard subposets. More... | |
virtual scoped_index | subposet_index_ub () const |
The upper bound on the subposet index;. More... | |
virtual pod_index_type | subposet_id (const std::string &xname) const |
The hub id of the subposet with name xname. More... | |
virtual void | subposet_id (const std::string &xname, scoped_index &result) const |
The id of the subposet with name xname. More... | |
virtual index_space_iterator & | get_subposet_id_space_iterator () const |
Allocates an id space iterator over the subposet ids from the iterator pool. More... | |
virtual void | release_subposet_id_space_iterator (index_space_iterator &xitr) const |
Returns the id space iterator xitr to the subposet iterator pool. More... | |
virtual bool | includes_subposet (pod_index_type xsubposet_hub_id, bool xauto_access=true) const |
True if this poset includes subposet with hub id xsubposet_hub_id. More... | |
bool | includes_subposet (const scoped_index &xsubposet_id, bool xauto_access=true) const |
True if this poset includes subposet with id xsubposet_id. More... | |
bool | includes_subposet (const std::string &xname, bool xauto_access=true) const |
True if this poset includes subposet with name xname. More... | |
bool | includes_subposet (const subposet *xs, bool xauto_access=true) const |
True if this poset includes xs. More... | |
bool | includes_subposets (const block< pod_index_type > &xhub_ids, bool xauto_access=true) const |
True if this poset includes subposets with hub ids xhub_ids. More... | |
bool | includes_subposets (const block< scoped_index > &xids, bool xauto_access=true) const |
True if this poset includes subposets with ids xids. More... | |
virtual pod_index_type | new_subposet (bool xinitialize=true) |
Creates a new subposet. If xinitialize, make the subposet empty,. More... | |
void | new_subposet (bool xinitialize, scoped_index &result) |
Creates a new subposet. If xinitialize, make the subposet empty,. More... | |
virtual pod_index_type | new_subposet (const block< pod_index_type > &xmembers) |
Creates a new subposet. Set the membership to the members with indices in xmambers. More... | |
virtual void | new_subposet (const block< scoped_index > &xmembers, scoped_index &result) |
Creates a new subposet. Set the membership to the members with indices in xmambers. More... | |
virtual void | delete_subposet (pod_index_type xsubposet_hub_id) |
Deletes the subposet with hub id xsubposet_hub_id. More... | |
void | delete_subposet (const scoped_index &xsubposet_id) |
Deletes the subposet with id xsubposet_id. More... | |
virtual const subposet & | whole () const |
The "improper" subset containing all members of this poset. More... | |
virtual subposet & | jims () |
The subset of all jims (mutable version) More... | |
virtual const subposet & | jims () const |
The subset of all jims (const version) More... | |
subposet & | table_dof_subposet () |
The table dof subposet when this poset is used as a schema (mutable version). More... | |
const subposet & | table_dof_subposet () const |
The table dof subposet when this poset is used as a schema (const version). More... | |
subposet & | row_dof_subposet () |
The row dof subposet when this poset is used as a schema (mutable version). More... | |
const subposet & | row_dof_subposet () const |
The row dof subposet when this poset is used as a schema (const version). More... | |
virtual int | version_ct () const |
The number of versions currently defined. More... | |
virtual int | version () const |
The current version. More... | |
virtual pod_index_type | version_index (int xversion) const |
The subposet hub id of the whole() subposet for version xversion. More... | |
void | version_index (int xversion, scoped_index &result) const |
The subposet id of the whole() subposet for version xversion. More... | |
virtual pod_index_type | version_jims_index (int xversion) const |
The subposet hub id of the jims() subposet for version xversion. More... | |
void | version_jims_index (int xversion, scoped_index &result) const |
The subposet id of the jims() subposet for version xversion. More... | |
bool | has_version (int xversion) const |
True if xversion is a valid version. More... | |
bool | is_version () const |
True if this poset is a version. More... | |
const index_space_family & | member_id_spaces (bool xauto_access) const |
Collection of member id spaces for this (const version). More... | |
index_space_family & | member_id_spaces (bool xauto_access) |
Collection of member id spaces for this (mutable version). More... | |
const hub_index_space_handle & | member_hub_id_space (bool xauto_access) const |
The member hub id space. More... | |
virtual const scoped_index & | member_id (bool xauto_access) const |
An id in the member hub id space; intended for copying to initialize ids to the member id space. More... | |
scoped_index | member_id (pod_index_type xid, bool xauto_access) const |
An id in the member hub id space with pod xid. More... | |
virtual pod_index_type | member_id (const std::string &xname, bool xauto_access) const |
The hub id of the member with name xname. More... | |
void | member_id (const std::string &xname, scoped_index &result, bool xauto_access) const |
The index of the member with name xname. More... | |
virtual void | new_link (pod_index_type xgreater, pod_index_type xlesser) |
Insert a cover link from greater to lesser (that is, hub id xgreater covers hub id xlesser). WARNING: this routine does not ensure that the link is a cover link, that is, it does not remove redundant or conflicting links. Improper use of this routine can produce inconsistent poset states. More... | |
void | new_link (const scoped_index &xgreater, const scoped_index &xlesser) |
Insert a cover link from greater to lesser (that is, id xgreater covers id xlesser). WARNING: this routine does not ensure that the link is a cover link, that is, it does not remove redundant or conflicting links. Improper use of this routine can produce inconsistent poset states. More... | |
virtual void | delete_link (pod_index_type xgreater, pod_index_type xlesser) |
Delete the cover link between hub id xgreater and hub id xlesser. More... | |
void | delete_link (const scoped_index &xgreater, const scoped_index &xlesser) |
Delete the cover link between id xgreater and id xlesser. More... | |
virtual bool | contains_link (pod_index_type xgreater, pod_index_type xlesser) const |
True if there is a cover link between hub id xgreater and hub id xlesser. More... | |
bool | contains_link (const scoped_index &xgreater, const scoped_index &xlesser) const |
True if there is a cover link between id xgreater and id xlesser. More... | |
pod_index_type | cover_id_space_id (bool xlower, pod_index_type xmbr_hub_id) const |
The id for the lower (xlower true) or upper (xlower false) cover id space of the member with hub id xmbr_hub_id. More... | |
pod_index_type | cover_id_space_id (bool xlower, const scoped_index &xmbr_id) const |
The id for the lower (xlower true) or upper (xlower false) cover id space of the member with id xmbr_id. More... | |
index_space_handle & | get_cover_id_space (bool xlower, pod_index_type xmbr_hub_id) const |
Allocates a handle for the lower (xlower true) or upper (xlower false) cover id space of the member with hub id xmbr_hub_id from the pool of id spaces. More... | |
index_space_handle & | get_cover_id_space (bool xlower, const scoped_index &xmbr_id) const |
Allocates a handle for the lower (xlower true) or upper (xlower false) cover id space of the member with id xmbr_id from the pool of id spaces. More... | |
template<typename handle_type > | |
handle_type & | get_cover_id_space (bool xlower, pod_index_type xmbr_index) const |
Allocates an handle of type handle_type for the lower (xlower true) or upper (xlower false) cover of member with index xmbr_index from the pool of id spaces. More... | |
template<typename handle_type > | |
bool | cover_id_space_handle_conforms_to (bool xlower, pod_index_type xmbr_index) const |
True if a handle for the lower (xlower true) or upper (xlower false) cover id space of the member with hub id xmbr_index conforms to a handle of type handle_type. More... | |
void | release_cover_id_space (index_space_handle &xcover_id_space) const |
Returns xcover_id_space to the pool of id spaces. More... | |
index_space_iterator & | get_cover_id_space_iterator (bool xlower, pod_index_type xmbr_hub_id) const |
Allocates an iterator for the lower (xlower true) or upper (xlower false) cover id space of the member with hub id xmbr_hub_id from the pool of id space iterators. More... | |
index_space_iterator & | get_cover_id_space_iterator (bool xlower, const scoped_index &xmbr_id) const |
Allocates an iterator for the lower (xlower true) or upper (xlower false) cover id space of the member with id xmbr_id from the pool of id space iterators. More... | |
void | release_cover_id_space_iterator (index_space_iterator &xcover_itr) const |
Returns xcover_itr to the pool of id space iterators. More... | |
bool | cover_contains_iterator (bool xlower, pod_index_type xmbr_hub_id, const index_space_iterator &xitr) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id is the domain of iterator xitr. More... | |
bool | cover_contains_iterator (bool xlower, const scoped_index &xmbr_id, const index_space_iterator &xitr) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id is the domain of iterator xitr. More... | |
bool | cover_is_empty (bool xlower, pod_index_type xmbr_hub_id) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id is empty. More... | |
bool | cover_is_empty (bool xlower, const scoped_index &xmbr_id) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id is empty. More... | |
bool | cover_is_singleton (bool xlower, pod_index_type xmbr_hub_id) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id contains exactly one member. More... | |
bool | cover_is_singleton (bool xlower, const scoped_index &xmbr_id) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id contains exactly one member. More... | |
virtual size_type | cover_ct (bool xlower, pod_index_type xmbr_hub_id) const |
The number of members in the lower cover (xlower true) or upper cover (xlower false) of the member with hub id xmbr_hub_id. More... | |
size_type | cover_ct (bool xlower, const scoped_index &xmbr_id) const |
The number of members in the lower cover (xlower true) or upper cover (xlower false) of the member with id xmbr_id. More... | |
bool | cover_contains_member (bool xlower, pod_index_type xmbr_hub_id, pod_index_type xother_mbr_hub_id) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id contains member with hub id xother_mbr_hub_id. More... | |
bool | cover_contains_member (bool xlower, const scoped_index &xmbr_id, const scoped_index &xother_mbr_id) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id contains member with id xother_mbr_id. More... | |
bool | cover_is_equal (bool xlower, pod_index_type xmbr_hub_id, pod_index_type xother_mbr_hub_id) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id contains the same members as the lower or upper cover set, respectively, of the member with hub id xother_mbr_hub_id. More... | |
bool | cover_is_equal (bool xlower, const scoped_index &xmbr_id, const scoped_index &xother_mbr_id) const |
True if and only if the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id contains the same members as the lower or upper cover set, respectively, of the member with id xother_mbr_id. More... | |
pod_index_type | first_cover_member (bool xlower, pod_index_type xmbr_hub_id) const |
Hub id of the first member of the lower (xlower true) or upper (xlower false) cover of the member with hub id xmbr_hub_id. More... | |
void | first_cover_member (bool xlower, const scoped_index &xmbr_id, scoped_index &result) const |
Id of the first member of the lower (xlower true) or upper (xlower false) cover of the member with id xmbr_id. More... | |
void | insert_cover_member (pod_index_type xother_mbr_hub_id, bool xlower, pod_index_type xmbr_hub_id) |
Inserts hub id xother_mbr_hub id in the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id. More... | |
void | insert_cover_member (const scoped_index &xother_mbr_id, bool xlower, const scoped_index &xmbr_id) |
Inserts id xother_mbr_id in the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id. More... | |
void | insert_cover_member (pod_index_type xother_mbr_hub_id, bool xlower, pod_index_type xmbr_hub_id, index_space_iterator &xitr) |
Inserts hub id xother_mbr_hub_id in the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id, at a position just before xitr. Increments xitr to the position after the inserted entry. More... | |
void | insert_cover_member (const scoped_index &xother_mbr_id, bool xlower, const scoped_index &xmbr_id, index_space_iterator &xitr) |
Inserts id xother_mbr_index in the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id, at a position just before xitr. Increments xitr to the position after the inserted entry. More... | |
void | remove_cover_member (pod_index_type xother_mbr_hub_id, bool xlower, pod_index_type xmbr_hub_id) |
Removes hub id xother_mbr_hub_id from the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id. More... | |
void | remove_cover_member (const scoped_index &xother_mbr_id, bool xlower, const scoped_index &xmbr_id) |
Removes id xother_mbr_id from the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id. More... | |
void | remove_cover_member (index_space_iterator &xitr, bool xlower, pod_index_type xmbr_hub_id) |
Removes the current item of xitr from the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id; If xitr is at the end, forces xitr.is_done(). Otherwise, increments xitr to the next position. More... | |
void | remove_cover_member (index_space_iterator &xitr, bool xlower, const scoped_index &xmbr_id) |
Removes the current item of xitr from the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id; If xitr is at the end, forces xitr.is_done(). Otherwise, increments xitr to the next position. More... | |
template<typename filter_type > | |
void | remove_cover_members (const filter_type &xfilter, bool xlower, pod_index_type xmbr_hub_id) |
Removes all members for which functor xfilter(xmbr.index().hub_pod()) is true from the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id. More... | |
template<typename filter_type > | |
void | remove_cover_members (const filter_type &xfilter, bool xlower, const scoped_index &xmbr_id) |
Removes all members for which functor xfilter(xmbr.index().hub_pod()) is true from the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id. More... | |
void | replace_cover_member (const scoped_index &xold_other_mbr_hub_id, const scoped_index &xnew_other_mbr_hub_id, bool xlower, const scoped_index &xmbr_hub_id) |
Replaces hub id xold_other_mbr_hub_id with hub id xnew_other_mbr_hub_id in the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id. More... | |
void | replace_cover_member (pod_index_type xold_other_mbr_id, pod_index_type xnew_other_mbr_id, bool xlower, pod_index_type xmbr_id) |
Replaces id xold_other_mbr_id with id xnew_other_mbr_id in the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id. More... | |
void | clear_cover (bool xlower, pod_index_type xmbr_hub_id) |
Clears the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id. More... | |
void | clear_cover (bool xlower, const scoped_index &xmbr_id) |
Clears the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id. More... | |
void | copy_cover (bool xlower, pod_index_type xmbr_hub_id, pod_index_type xother_mbr_hub_id) |
Copies the lower (xlower true) or upper (xlower false) cover set of the member with hub id xmbr_hub_id to the member with hub id xother_mbr_hub_id. More... | |
void | copy_cover (bool xlower, const scoped_index &xmbr_id, const scoped_index &xother_mbr_id) |
Copies the lower (xlower true) or upper (xlower false) cover set of the member with id xmbr_id to the member with id xother_mbr_id. More... | |
void | append_upper_cover_of_bottom (pod_index_type xmbr_hub_begin, pod_index_type xmbr_hub_end) |
Appends the interval of hub ids [xmbr_hub_begin, xmbr_hub_end) to the upper cover of bottom. This function is intended to use by block members that store there vertices in a gathered id space. More... | |
void | append_upper_cover_of_bottom (const scoped_index &xmbr_begin, const scoped_index &xmbr_end) |
Appends the interval of ids [xbegin, xend) to the upper cover of bottom. This function is intended to use by block members that store there vertices in a gathered id space. More... | |
virtual bool | table_dof_map_conforms (const poset_dof_map *xdof_map) const |
True if xdof_map conforms to (is derived from) the type of table dof map required by this poset state and handle. More... | |
virtual array_poset_dof_map & | table_dof_map (bool xrequire_write_access=false) |
The map from table dof client_ids to table dof values for this poset (mutable version) More... | |
virtual const array_poset_dof_map & | table_dof_map (bool xrequire_write_access=false) const |
The map from table dof client_ids to table dof values for this poset (const version) More... | |
void | table_dof_tuple (void *xbuf, size_t xbuflen) const |
OBSOLETE: use table_dofs(). Copies the entire table dof tuple from internal storage to xbuf. More... | |
void * | table_dofs () |
The table dofs for this instance (mutable version). More... | |
const void * | table_dofs () const |
The table dofs for this instance (const version). More... | |
void * | table_dofs (bool xauto_access) |
The table dofs for this instance (mutable auto-access version). More... | |
const void * | table_dofs (bool xauto_access) const |
The table dofs for this instance (const auto-access version). More... | |
virtual bool | is_schematized (bool xauto_access) const |
True if this poset has been prepared for use as a schema, that is, if the top member has been schematized. More... | |
virtual void | schematize (subposet *xtable_dof_subposet, subposet *xrow_dof_subposet, bool xall_members=false) |
Prepare this poset and its top member for use as a schema. If xall_members = true, schematize all other members as well. More... | |
virtual bool | le (pod_index_type xgreater, pod_index_type xlesser) const |
True if hub id xlesser is less than or equal to hub id xgreater. More... | |
bool | le (const scoped_index &xgreater, const scoped_index &xlesser) const |
True if id xlesser is less than or equal to id xgreater. More... | |
virtual bool | leqv (pod_index_type xgreater, pod_index_type xlesser) const |
True if hub id xlesser is less than or equivalent to hub id xgreater. More... | |
bool | leqv (const scoped_index &xgreater, const scoped_index &xlesser) const |
True if id xlesser is less than or equivalent to id xgreater. More... | |
virtual bool | is_jem (pod_index_type xmbr_hub_id, pod_index_type xother_hub_id) const |
True if hub id xother_hub_id is join equivalent to hub id xmbr_hub_id. More... | |
bool | is_jem (const scoped_index &xmbr_id, const scoped_index &xother_id) const |
True if id xother_id is join equivalent to id xmbr_id. More... | |
virtual pod_index_type | greatest_jem (pod_index_type xmbr_hub_id) const |
The hub id of the largest member which is join-equivalent to hub id xmbr_hub_id. More... | |
void | greatest_jem (const scoped_index &xmbr_id, scoped_index &result) const |
The id of the largest member which is join-equivalent to id xmbr_id. More... | |
virtual pod_index_type | least_jem (pod_index_type xmbr_hub_id) const |
The hub id of the smallest member which is join-equivalent to hub id xmbr_hub_id. More... | |
void | least_jem (const scoped_index &xmbr_id, scoped_index &result) const |
The id of the smallest member which is join-equivalent to id xmbr_id. More... | |
void | link_greatest_jem (pod_index_type xjem1, pod_index_type xjem2) |
Makes hub id xjem1 the greatest jem of hub id xjem2, unless the current greatest jem of xjem2 is top, in which case it makes top the greatest jem of xjem1. More... | |
void | link_greatest_jem (const scoped_index &xjem1, const scoped_index &xjem2) |
Makes id xjem1 the greatest jem of id xjem2, unless the current greatest jem of xjem2 is top, in which case it makes top the greatest jem of xjem1. More... | |
void | link_least_jem (pod_index_type xjem1, pod_index_type xjem2) |
Makes hub id xjem1 the least jem of hub id xjem2, unless the current least jem of xjem2 is bottom, in which case it makes bottom the least jem of xjem1. More... | |
void | link_least_jem (const scoped_index &xjem1, const scoped_index &xjem2) |
Makes id xjem1 the least jem of id xjem2, unless the current least jem of xjem2 is bottom, in which case it makes bottom the least jem of xjem1. More... | |
virtual void | merge_jems (pod_index_type xjem1, pod_index_type xjem2) |
Merge the join-equivalence class of hub id xjem2 under that of hub id xjem1. More... | |
void | merge_jems (const scoped_index &xjem1, const scoped_index &xjem2) |
Merge the join-equivalence class of id xjem2 under that of id xjem1. More... | |
virtual std::string | subposet_name (pod_index_type xsubposet_hub_id, bool xauto_access=false) const |
A name for the subposet with hub id xsubposet_hub_id. More... | |
std::string | subposet_name (const scoped_index &xsubposet_id, bool xauto_access=false) const |
A name for the subposet with id xsubposet_id. More... | |
void | all_subposet_names (pod_index_type xsubposet_hub_id, block< std::string > &xresult, bool xauto_access=false) const |
All the names for the subposet with hub id xsubposet_hub_id. More... | |
void | all_subposet_names (const scoped_index &xsubposet_id, block< std::string > &xresult, bool xauto_access=false) const |
All the names for the subposet with id xsubposet_id. More... | |
size_type | subposet_name_ct (pod_index_type xsubposet_hub_id, bool xauto_access) const |
The number of names for the subposet with hub id xsubposet_hub_id. More... | |
size_type | subposet_name_ct (const scoped_index &xsubposet_id, bool xauto_access) const |
The number of names for the subposet with id xsubposet_id. More... | |
bool | subposet_has_name (pod_index_type xsubposet_hub_id, const std::string &xname, bool xauto_access=false) const |
True if xname is a name for the subposet with hub id xsubposet_hub_id. More... | |
bool | subposet_has_name (const scoped_index &xsubposet_id, const std::string &xname, bool xauto_access=false) const |
True if xname is a name for the subposet with id xsubposet_id. More... | |
virtual void | put_subposet_name (pod_index_type xsubposet_hub_id, const std::string &xname, bool xunique, bool xauto_access) |
Make xname a name for the subposet with hub id xsubposet_hub_id; if xunique, make xname the only name. More... | |
void | put_subposet_name (const scoped_index &xsubposet_id, const std::string &xname, bool xunique, bool xauto_access) |
Make xname a name for the subposet with id xsubposet_id; if xunique, make xname the only name. More... | |
void | delete_subposet_name (const std::string &xname, bool xauto_access=false) |
Make xname not a name for any subposet. More... | |
void | delete_all_subposet_names (pod_index_type xsubposet_hub_id, bool xauto_access=false) |
Delete all names for the subposet with hub id xsubposet_hub_id;. More... | |
void | delete_all_subposet_names (const scoped_index &xsubposet_id, bool xauto_access=false) |
Delete all names for the subposet with id xsubposet_id;. More... | |
const index_space_family & | subposet_id_spaces (bool xauto_access) const |
Collection of subposet id spaces for this (const version). More... | |
index_space_family & | subposet_id_spaces (bool xauto_access) |
Collection of subposet id spaces for this (mutable version). More... | |
const hub_index_space_handle & | subposet_hub_id_space (bool xauto_access) const |
The subposet hub id space. More... | |
virtual const scoped_index & | subposet_id (bool xauto_access) const |
An id in the subposet hub id space; intended for copying to initialize ids to the subposet id space. More... | |
scoped_index | subposet_id (pod_index_type xid, bool xauto_access) const |
An id in the subposet hub id space with pod xid. More... | |
poset_dof_map & | row_dof_map (const scoped_index &xtuple_id, bool xrequire_write_access=false) const |
The map from row dof client_ids to row dof values for dof tuple id xtuple_id. More... | |
virtual const scoped_index & | clone_row_dof_map (const poset_dof_map &xprototype) |
Creates a new row dof map which is a clone of xprototype. More... | |
poset_dof_map & | member_dof_map (pod_index_type xmbr_hub_id, bool xrequire_write_access=false) |
The dof map associated with the member identified by hub id xmbr_hub_id (mutable version). More... | |
poset_dof_map & | member_dof_map (const scoped_index &xmbr_id, bool xrequire_write_access=false) |
The dof map associated with the member identified by xmbr_index (mutable version). More... | |
const poset_dof_map & | member_dof_map (pod_index_type xmbr_hub_id, bool xrequire_write_access=false) const |
The dof map associated with the member identified by hub id xmbr_hub_id (const version). More... | |
const poset_dof_map & | member_dof_map (const scoped_index &xmbr_id, bool xrequire_write_access=false) const |
The dof map associated with the member identified by xmbr_index (const version). More... | |
void | member_dof_tuple (pod_index_type xmbr_hub_id, void *xbuf, size_t xbuf_len, bool xauto_access) const |
Copies the dof tuple of the member with hub id xmbr_hub_id into the buffer xbuf of length xbuf_len bytes. More... | |
void | put_member_dof_tuple (pod_index_type xmbr_hub_id, void *xbuf, size_t xbuf_len, bool xauto_access) |
Copies the contents of the buffer xbuf of len xbuf_len into the dof tuple of the member with hub id xmbr_hub_id. More... | |
pod_index_type | member_dof_tuple_id (pod_index_type xmbr_hub_id, bool xauto_access) const |
The dof tuple hub id of the member with hub id xmbr_hub_id. More... | |
void | member_dof_tuple_id (const scoped_index &xmbr_id, scoped_index &result, bool xauto_access) const |
The dof tuple index of the member with id xmbr_id. More... | |
void | put_member_dof_tuple_id (pod_index_type xmbr_hub_id, pod_index_type xtuple_hub_id, bool xauto_access) |
Sets the dof tuple hub id of the member with hub id xmbr_hub_id to xtuple_hub_id. More... | |
void | put_member_dof_tuple_id (const scoped_index &xmbr_id, const scoped_index &xtuple_id, bool xauto_access) |
Sets the dof tuple id of the member with id xmbr_id to xtuple_id. More... | |
bool | contains_row_dof_tuple (pod_index_type xtuple_hub_id) const |
True if this contains a tuple with hub id xtuple_hub_id. More... | |
bool | contains_row_dof_tuple (const scoped_index &xtuple_id) const |
True if this contains a tuple with id xtuple_id. More... | |
size_type | row_dof_tuple_ct () const |
The number of row_dof_tuples of this poset. More... | |
int | standard_row_dof_tuple_ct () const |
The number of standard row_dof_tuples automatically allocated by the constructor. More... | |
bool | has_standard_row_dof_tuple_ct () const |
True if poset is in its initial state, that is, it contains just the standard row_dof_tuples. More... | |
const index_space_family & | dof_tuple_id_spaces (bool xauto_access) const |
Collection of dof tuple id spaces for this (const version). More... | |
index_space_family & | dof_tuple_id_spaces (bool xauto_access) |
Collection of dof tuple id spaces for this (mutable version). More... | |
const hub_index_space_handle & | dof_tuple_hub_id_space (bool xauto_access) const |
The dof tuple hub id space. More... | |
virtual const scoped_index & | dof_tuple_id (bool xauto_access) const |
An id in the dof tuple hub id space; intended for copying to initialize ids to the dof tuple id space. More... | |
scoped_index | dof_tuple_id (pod_index_type xid, bool xauto_access) const |
An id in the dof tuple hub id space with pod xid. More... | |
virtual schema_poset_member * | new_schema_handle (const std::string &xid_space_name, pod_index_type xschema_member_ext_id, pod_index_type xbase_space_ext_id, pod_index_type xfiber_schema_ext_id, pod_index_type xlocal_schema_ext_id) |
Creates a member handle of the type appropriate for members of this when used as a schema. Intended for use only by the i/o subsystem. /. More... | |
virtual index_iterator * | get_decomposition (pod_index_type xindex) const |
An iterator over the members of the decomposition identified by xindex. /. More... | |
index_iterator * | bound_iterator (const poset_bounds &xbnd_id, bool xis_ub) const |
An iterator for the upper bound (xis_ub == true) or the lower bound (xis_ub == false) for xbounds. More... | |
bool | bound_contains_member (const poset_bounds &xbounds, bool xis_ub, const scoped_index &xindex) const |
True if the upper bound id (xis_ub == true) or the lower bound (xis_ub == false) of xbounds contains the member specified by xindex. More... | |
pod_index_type | get_int_id (pod_index_type xext_id, const std::string &xid_space_name, bool xauto_access) const |
Translates xext_id to an internal id using the equivalence map with name xid_space_name. More... | |
virtual bool | is_valid_int_id (pod_index_type xint_id, const std::string &xid_space_name, bool xauto_access) const |
True if xint_id can be translated to an external id using the equivalence map with name xid_space_name. More... | |
bool | is_valid_int_id (const scoped_index &xint_id, const std::string &xid_space_name, bool xauto_access) const |
True if xint_id can be translated to an external id using the equivalence map with name xid_space_name. More... | |
virtual pod_index_type | get_ext_id (pod_index_type xint_id, const std::string &xid_space_name, bool xauto_access) const |
Translates xint_id to an external id using the equivalence map with name xid_space_name. More... | |
pod_index_type | get_ext_id (const scoped_index &xint_id, const std::string &xid_space_name, bool xauto_access) const |
Translates xint_id to an external id using the equivalence map with name xid_space_name. More... | |
void | to_stream (std::ostream &xos=std::cout) |
Write instance information to an ostream (default = stdout). More... | |
std::string | to_string () |
Get instance information as a string. More... | |
Public Member Functions inherited from sheaf::read_write_monitor_handle | |
virtual | ~read_write_monitor_handle () |
Descturctor. More... | |
bool | state_is_read_only_accessible () const |
True if this is attached and the state is accessible for read access but not for write. More... | |
bool | state_is_not_read_only_accessible () const |
True if this is attached and the state is not accessible for read only access. More... | |
bool | state_is_read_accessible () const |
True if this is attached and if the state is accessible for read or access control is disabled. More... | |
bool | state_is_not_read_accessible () const |
True if this is attached and if the state is accessible for read or if access control is disabled. More... | |
bool | state_is_auto_read_accessible (bool xauto_access) const |
True if the state is auto accessible for read, that is, if the state is already accessible for read or if this is attached and xuto_access is true. More... | |
bool | state_is_read_write_accessible () const |
True if this is attached and if the state is accessible for read and write or access control is disabled. More... | |
bool | state_is_not_read_write_accessible () const |
True if state is attached and if not accessible for read and write or access control is disabled. More... | |
bool | state_is_auto_read_write_accessible (bool xauto_access) const |
True if state is auto accessible for read and write, that is, if the state is already accessible for read and write or if this is attached and xuto_access is true. or if this is attached and access control is disabled. More... | |
int | access_request_depth () const |
The number of times access has been requested and granted without being released. More... | |
bool | state_is_mode_locked () const |
Obsolete. More... | |
int | mode_lock_ct () const |
Obsolete. More... | |
void | get_mode_lock () const |
Obsolete. More... | |
void | release_mode_lock () |
Obsolete. More... | |
bool | state_is_modified () const |
True if write access has been granted and released since the last call to clear_state_is_modified(). More... | |
void | clear_state_is_modified () |
Sets the state_is_modified floag to false. More... | |
Public Member Functions inherited from sheaf::any | |
bool | is_same_type (const any *other) const |
True if other is the same type as this. More... | |
virtual | ~any () |
Destructor. More... | |
bool | invariant_check () const |
True if invariant checking is enabled. More... | |
void | enable_invariant_check () const |
Enable invariant checking. More... | |
void | disable_invariant_check () const |
Disable invariant check. Intended for preventing recursive calls to invariant and for suppressing invariant checking during multi-phase initialization. More... | |
int | disable_invariance_check_request_depth () const |
Number of times disable_invariant_check has been called without matching call to enable_invariant_check. More... | |
Friends | |
class | poset_state_handle |
class | storage_agent |
NAMESPACE_POSET FACET | |
namespace_poset (const std::string &xname) | |
Creates a new namespace with name xname. More... | |
virtual | ~namespace_poset () |
Destructor. More... | |
namespace_poset () | |
Default constructor; creates an unattached namespace handle. More... | |
namespace_poset (namespace_poset_member *xtop, namespace_poset_member *xbottom) | |
Covariant constructor. More... | |
namespace_poset (const namespace_poset &xother) | |
Copy constructor; disabled. More... | |
namespace_poset & | operator= (const namespace_poset &xother) |
Assignment operator; disabled. More... | |
namespace_poset & | operator= (const poset_state_handle &xother) |
Assignment operator; disabled. More... | |
PRIMITIVES FACET | |
primitives_poset & | primitives () |
The poset of primitives for this namespace (mutable version) More... | |
const primitives_poset & | primitives () const |
The poset of primitives this namespace (const version) More... | |
primitives_poset_schema & | primitives_schema () |
The schema poset for the primitives poset (mutable version) More... | |
const primitives_poset_schema & | primitives_schema () const |
The schema poset for the primitives poset (const version) More... | |
static poset_path | primitives_schema_path () |
The path for the primitives schema. More... | |
MEMBER POSET FACET | |
bool | contains_poset (pod_index_type xhub_id, bool xauto_access=true) const |
True if this contains a poset with hub id xhub_id.. More... | |
bool | contains_poset (const scoped_index &xid, bool xauto_access=true) const |
True if this contains a poset with id xid. More... | |
template<typename P > | |
SHEAF_DLL_SPEC bool | contains_poset (pod_index_type xhub_id, bool xauto_access=true) const |
True if and only if this contains a poset with hub id xhub_id and the poset conforms to type P. More... | |
template<typename P > | |
SHEAF_DLL_SPEC bool | contains_poset (const scoped_index &id, bool xauto_access=true) const |
True if and only if this contains a poset with id xid and the poset conforms to type P. More... | |
bool | contains_poset (const poset_path &xpath, bool xauto_access=true) const |
True if this contains a poset with name xpath.poset_name(). More... | |
template<typename P > | |
SHEAF_DLL_SPEC bool | contains_poset (const poset_path &xpath, bool xauto_access=true) const |
True if and only if this contains a poset with name xpath.poset_name() and the poset conforms (can be dynamically cast) to type P. More... | |
bool | owns (const poset_state_handle &xposet, bool xauto_access) const |
True if and only if this contains the poset xposet. synonym for contains_poset(xposet.poset_path(true), xauto_access) More... | |
bool | contains_poset_member (pod_index_type xposet_hub_id, pod_index_type xmember_hub_id, bool xauto_access=true) const |
True if this contains a poset with hub id xposet_hub_id which contains a member with hub id xmember_hub_id. More... | |
bool | contains_poset_member (const scoped_index &xposet_id, const scoped_index &xmember_id, bool xauto_access=true) const |
True if this contains a poset with index xposet_id which contains a member with index xmember_id. More... | |
bool | contains_poset_member (const poset_path &xpath, bool xauto_access=true) const |
True if this contains the poset and member specified by xpath. More... | |
bool | contains_poset_members (const std::string &xposet_name, const std::string xmember_names[], int xmember_names_ct, bool xauto_access=true) const |
True if this contains a poset with name xposet_name which contains all members with names in array xmember_name. More... | |
bool | contains_poset_subposet (const poset_path &xpath, bool xauto_access=true) const |
True if this contains the poset and subposet specified by xpath. More... | |
poset_state_handle & | member_poset (pod_index_type xhub_id, bool xauto_access=true) const |
The poset_state_handle object referred to by hub id xhub_id. More... | |
poset_state_handle & | member_poset (const scoped_index &xid, bool xauto_access=true) const |
The poset_state_handle object referred to by id xid. More... | |
template<typename P > | |
SHEAF_DLL_SPEC P & | member_poset (pod_index_type xhub_id, bool xauto_access=true) const |
The poset_state_handle object referred to by hub id xhub_id, dynamically cast to type P*. More... | |
template<typename P > | |
SHEAF_DLL_SPEC P & | member_poset (const scoped_index &xid, bool xauto_access=true) const |
The poset_state_handle object referred to by id xid, dynamically cast to type P*. More... | |
poset_state_handle & | member_poset (const poset_path &xpath, bool xauto_access=true) const |
The poset_state_handle object referred to by name xpath.poset_name(). More... | |
template<typename P > | |
SHEAF_DLL_SPEC P & | member_poset (const poset_path &xpath, bool xauto_access=true) const |
The poset_state_handle object referred to by name xpath.poset_name(), dynamically cast to type P*. More... | |
pod_index_type | member_poset_schema_id (const scoped_index &xindex, bool xauto_access) const |
The index of the schema of the member poset with index xindex. More... | |
void | delete_poset (pod_index_type xhub_id, bool xauto_access) |
Delete the poset with hub id xhub_id. More... | |
void | delete_poset (scoped_index xid, bool xauto_access) |
Delete the poset with id xid. More... | |
void | delete_poset (std::string xname, bool xauto_access) |
Delete the poset with name xname. More... | |
void | delete_poset (poset_path xpath, bool xauto_access) |
Delete the poset with name xpath.poset_name(). More... | |
void | delete_poset (namespace_poset_member &xmbr) |
Delete the poset associated with xmbr. More... | |
scoped_index | insert_poset (const poset_state_handle &xposet, const std::string &xposet_name, bool xauto_link) |
Inserts xposet into this namespace with member name xposet_name. More... | |
scoped_index | insert_poset (const poset_state_handle &xposet, const std::string &xposet_name, bool xauto_link, bool xauto_access) |
Inserts xposet into this namespace with member name xposet_name. More... | |
virtual void | link_poset (const namespace_poset_member &xmbr) |
Links xmbr into the appropriate group. More... | |
PATH QUERY FACET | |
bool | contains_path (const poset_path &xpath, bool xauto_access=true) const |
True if this contains the poset or poset member specified by xpath. More... | |
template<typename P > | |
bool | contains_path (const poset_path &xpath, bool xauto_access=true) const |
True if this contains the poset or poset member specified by xpath and the poset conforms to poset type P. More... | |
bool | path_is_auto_read_accessible (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath exists and is auto read accessible. More... | |
template<typename P > | |
bool | path_is_auto_read_accessible (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath exists, is auto read accessible, and conforms to poset type P. More... | |
bool | path_is_auto_read_write_accessible (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath exists and is auto read-write accessible. More... | |
template<typename P > | |
bool | path_is_auto_read_write_accessible (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath exists, is auto read-write accessible, and conforms to poset type P. More... | |
template<typename P > | |
bool | path_is_available (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath does not exist or exists and conforms to poset type P. More... | |
bool | path_is_auto_read_available (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath does not exist or exists and is auto read accessible. More... | |
template<typename P > | |
bool | path_is_auto_read_available (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath does not exist or exists, conforms to poset type P and is auto read accessible. More... | |
bool | path_is_auto_read_write_available (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath does not exist or exists and is auto read-write accessible. More... | |
template<typename P > | |
bool | path_is_auto_read_write_available (const poset_path &xpath, bool xauto_access) const |
True if the state referred to xpath does not exist or exists, conforms to poset type P and is auto read-write accessible. More... | |
bool | poset_state_is_read_accessible (const poset_path &xpath, bool xauto_access=true) const |
True if the poset referred to by xpath is read accessible. More... | |
bool | poset_state_is_read_write_accessible (const poset_path &xpath, bool xauto_access=true) const |
True if the poset referred to by xpath is read-write accessible. More... | |
CURRENT NAMESPACE FACET | |
void | put_current_namespace (namespace_poset *xns) |
Sets the current default namespace to xns. More... | |
static namespace_poset * | current_namespace () |
The current default namespace. More... | |
FACTORY INITIALIZATION FACET | |
virtual void | virtual_initialize_prototypes () |
Initialize all the prototypes needed by various factory methods; virtual version. More... | |
static void | initialize_prototypes () |
Initialize all the prototypes needed by various factory methods,. More... | |
static void | initialize_poset_prototypes () |
Initialize the prototypes needed by poset factory method,. More... | |
static void | initialize_crg_interval_prototypes () |
Initialize the prototypes needed by crg interval factory method,. More... | |
static void | initialize_dof_map_prototypes () |
Initialize the prototypes needed by dof map factory method,. More... | |
static void | initialize_id_space_prototypes () |
Initialize the prototypes needed by id space factory method,. More... | |
STATE FACET | |
virtual poset_type | type_id () const |
Identifier for the type of this poset. More... | |
virtual const char * | class_name () const |
The name of this class. More... | |
virtual void | begin_jim_edit_mode (bool xauto_access=true) |
Allow editing of jims and jim order relation. More... | |
virtual void | end_jim_edit_mode (bool xensure_lattice_invariant=true, bool xauto_access=true) |
prevent editing of jims and jim order relation More... | |
virtual void | get_read_access () const |
Get read access to the state associated with this. More... | |
virtual void | get_read_write_access (bool xrelease_read_only_access=false) |
Get read write access to the state associated with this. If release_read_only_access is requested, read only access will be released then read_write_access will be requested, finally the same level of read_access as before will be requested. More... | |
virtual void | release_access (bool xall=false) const |
Release access. If xall is true, release all levels of access. Otherwise, release one level of access. More... | |
void | new_state (const std::string &xname) |
Creates a new namespace state with name xname and attaches this to it. More... | |
virtual void | detach_from_state () |
Detaches this from its state. More... | |
virtual void | attach_handle_data_members () |
Initializes the handle data members when this handle is attached to a state. More... | |
GLOBAL ATTRIBUTES FACET | |
virtual std::string | name () const |
The name of this poset. More... | |
virtual std::string | name (bool xauto_access) const |
The name of this poset. More... | |
virtual poset_path | path (bool xauto_access=true) const |
The path of this poset. More... | |
virtual void | initialize_namespace (namespace_poset &xns, bool xauto_link=true) |
Installs this as a member of xns. More... | |
SCHEMA FACET | |
typedef namespace_poset_schema | schema_type |
The type of schema member for this class. More... | |
namespace_poset_schema | _namespace_schema |
The schema poset for this namespace. More... | |
namespace_poset_schema & | namespace_schema () |
The namespace poset schema within this namespace (mutable version) More... | |
const namespace_poset_schema & | namespace_schema () const |
The namespace poset schema within this namespace (const version) More... | |
virtual bool | row_dof_map_conforms (const poset_dof_map *xdof_map) const |
True if xdof_map conforms to (is derived from) the type of row dof map required by this poset. More... | |
virtual namespace_poset_dof_map & | row_dof_map (pod_index_type xtuple_hub_id, bool xrequire_write_access=false) const |
The map from row dof client_ids to row dof values for dof tuple hub id xtuple_hub_id. More... | |
virtual const scoped_index & | new_row_dof_map () |
Creates a new row dof map appropriate for jims of this. More... | |
MEMBERSHIP FACET | |
namespace_poset_member & | top () |
The top member of the poset (mutable version) More... | |
const namespace_poset_member & | top () const |
The top member of the poset (const version) More... | |
namespace_poset_member & | bottom () |
The bottom member of the poset (mutable version) More... | |
const namespace_poset_member & | bottom () const |
The bottom member of the poset (const version) More... | |
void | clear () |
Removes all members except the standard members. More... | |
virtual void | initialize_standard_members () |
Creates the standard members for this namespace. More... | |
virtual void | initialize_additional_members () |
Creates additional members for this namespace. More... | |
MEMBER ID SPACE FAMILY FACET | |
const index_space_handle & | get_member_poset_id_space (bool xauto_access) const |
Allocates a handle for the id space for member posets from the pool of id space handles. More... | |
void | release_member_poset_id_space (index_space_handle &xid_space, bool xauto_access) const |
Returns the handle for the id space for member posets to the pool of id space handles. More... | |
index_space_iterator & | get_member_poset_id_space_iterator (bool xauto_access) const |
Allocates a iterator for the id space for member posets. from the pool of id space iterators. More... | |
void | release_member_poset_id_space_iterator (index_space_iterator &xid_space, bool xauto_access) const |
Returns the iterator for the id space for member posets to the pool of id space iterators. More... | |
void | initialize_member_poset_id_space () |
Creates the member poset id space. More... | |
I/O SUPPORT FACET | |
virtual pod_index_type | prereq_id (int xi) const |
The id of the xi-th prerequisite poset for this. More... | |
void | put_name (const std::string &xname) |
Sets name() to xname. Intended for use only by storage_agent::begin_read_transaction(namespace_poset&). More... | |
DEBUGGING FACET | |
void | to_stream (std::ostream &xos=std::cout) |
Write instance information to an ostream (default = stdout). More... | |
std::string | to_string () |
Get instance information as a string. More... | |
ANY FACET | |
virtual bool | is_ancestor_of (const any *other) const |
True if other conforms to this. More... | |
namespace_poset * | clone () const |
Virtual constructor; creates a new handle of the same actual type as this, attached to the same state as this. More... | |
bool | invariant () const |
Class invariant. More... | |
Additional Inherited Members | |
Public Types inherited from sheaf::poset_state_handle | |
typedef schema_poset_member | schema_type |
The type of schema member for this class. More... | |
Static Public Member Functions inherited from sheaf::poset_state_handle | |
static const std::string & | coarsest_common_refinement_name () |
The name of the coarsest common refinement subposet. More... | |
Static Public Member Functions inherited from sheaf::read_write_monitor_handle | |
static bool | access_control_disabled () |
True if access control mechanism is disabled. Default value is enabled (false) and access is controlled by the per-thread access control functions. Disabled (true) is equivalent to having read-write access at all times, irrespective of any access control requests. Synonym for read_write_monitor::access_control_disabled(). More... | |
static void | enable_access_control () |
Enables access control. Synonym for read_write_monitor::enable_access_control(). Should only be invoked once at beginning of a program, before any other SheafSystem calls. Once enabled, access control can not be disabled. More... | |
Protected Types inherited from sheaf::poset_state_handle | |
typedef poset_crg_state::member_name_map_type | member_name_map_type |
The type of the member name map. More... | |
Protected Member Functions inherited from sheaf::poset_state_handle | |
member_name_map_type & | member_name_map (bool xrequire_write_access=false) |
The bidirectional map between member indices and names. More... | |
virtual poset_state * | state_obj () const |
State object for this poset. More... | |
void | attach_to_state (const poset_state_handle *xother) |
Attach this handle to the same state as xother. More... | |
virtual void | attach_to_state (const namespace_poset *xhost, pod_index_type xindex) |
Attach this handle to the state associated with the member with index xindex in name space xhost. More... | |
void | attach_to_state (const namespace_poset *xhost, const scoped_index &xindex) |
Attach this handle to the state associated with the member with index xindex in name space xhost. More... | |
virtual void | attach_to_state (const namespace_poset *xhost, const std::string &xname) |
Attach this handle to the state associated with the member with name xname in name space xhost. More... | |
virtual void | attach_to_state (const abstract_poset_member *xmbr) |
Attach this handle to the state with associated with namespace member xmbr. More... | |
void | new_state (namespace_poset &xns, const poset_path &xpath, const schema_poset_member &xschema, array_poset_dof_map &xdof_map) |
Creates a new poset state with schema xschema and table dof map xdof_map, attaches this to the state and creates and initializes the associated namespace member. Intended for use by new_table factory methods. More... | |
virtual void | new_state (const poset_path &xpath, const schema_poset_member &xschema, array_poset_dof_map &xdof_map) |
Creates a new poset state with path xpath, schema xschema and table dof map xdof_map, attaches this to the state. More... | |
virtual void | initialize_handle_data_members (const namespace_poset &xns) |
Initializes the handle data members that depend on the table dofs and are required to get access when this handle is used to create a new state. Intended to be called only from new_state and to be redefined in descendants to handle additional data members defined there. More... | |
void | ensure_lattice_invariant () |
Restores the lattice invariant after editing jims. More... | |
virtual void | terminate_access () |
Release all access to posets this depends on, then detach and delete the state. More... | |
virtual void | initialize_namespace (namespace_poset &xns, const std::string &xposet_name, bool xauto_link=true) |
Installs this as a member of xns. If xauto_link, automatically links the member into an appropriate group. More... | |
poset_crg_state & | crg () const |
The cover relation graph. More... | |
void | put_standard_member_ct (int xct) |
Sets the number of standard members automatically allocated by the constructor. More... | |
void | put_standard_row_dof_tuple_ct (int xct) |
Sets the number of standard row dof tuples automatically allocated by the constructor. More... | |
bool | index_in_bounds (const scoped_index &xmbr_id) const |
True if 0 <= xmbr_id < state_obj()->member_index_ub(). More... | |
bool | index_in_bounds (const block< scoped_index > &indices) const |
True if for all i: 0 <= indices[i] < state_obj()->member_index_ub(). More... | |
virtual void | new_member (pod_index_type xmbr_hub_id, bool xis_jim, const scoped_index &xdof_tuple_id) |
Create a disconnected member with hub id xmbr_hub_id, is_jim == xis_jim and the dof tuple identified by xdof_tuple_id. WARNING: this routine leaves a disconnected member in the poset and hence leaves the poset in an invalid state. The client must properly link the member created by this routine using new_link in order to return the poset to a valid state. More... | |
void | new_member (pod_index_type xmbr_hub_id, bool xis_jim, poset_dof_map *xdof_map, bool xcopy_dof_map) |
Create a disconnected member with hub id xmbr_hub_id and is_jim == xis_jim. If xdof_map != 0, the new member uses it for dof storage, otherwise it creates an instance of array_poset_dof_map. WARNING: this routine leaves a disconnected member in the poset and hence leaves the poset in an invalid state. The client must properly link the member created by this routine using new_link in order to return the poset to a valid state. More... | |
virtual pod_index_type | new_member_interval (const std::string &xinterval_type, size_type xsize) |
Create a disconnected member interval of type xinterval_type with size xsize. More... | |
virtual void | new_member_interval (pod_index_type xmbr_hub_id, const std::string &xinterval_type, size_type xsize) |
Create a disconnected member interval beginning at hub id xmbr_hub_id, of type xinterval_type, and with size xsize. More... | |
virtual subposet & | resident () |
The subset of all members with resident (in memory) dof tuples (mutable version). More... | |
virtual const subposet & | resident () const |
The subset of all members with resident (in memory) dof tuples (const version). More... | |
poset_powerset_state & | powerset () const |
The set of subposets of this poset. More... | |
virtual void | initialize_standard_subposets (const std::string &xname) |
Creates the subposets common to every poset (e.g. whole() and jims()). More... | |
void | put_standard_subposet_ct (int xct) |
Sets the number of standard subposets automatically allocated by the constructor. More... | |
poset_state_handle () | |
Default constructor. More... | |
virtual | ~poset_state_handle () |
Destructor. More... | |
poset_state_handle (abstract_poset_member *xtop, abstract_poset_member *xbottom) | |
Covariant constructor. More... | |
poset_state_handle (const poset_state_handle &xother) | |
Copy constructor; disabled. More... | |
poset_state_handle & | operator= (const poset_state_handle &xother) |
Assignment operator; disabled. More... | |
bool | is_version_name (const std::string &xname) const |
True if xname has the proper form for a version name. More... | |
std::string | version_to_name (int xversion) const |
Creates the standard name for the level xversion whole subposet. More... | |
int | version_from_name (const std::string &xname) const |
Extracts the version from the standard name. More... | |
void | put_version (int xversion) |
Set the current level to xversion. More... | |
void | update_standard_member_id_spaces () |
Update the initially allocated id spaces. More... | |
void | clear_member_id_spaces (bool xauto_access) |
Deletes all non-standard id spaces. More... | |
pod_index_type | new_term (size_type xct, bool xauto_access) |
Creates a new term in the member hub id space with xct number of ids. Returns the index of the id space state created. More... | |
void | extend_last_member_term (size_type xct, bool xauto_access) |
Extends the last term of the member hub id space to ct == xct. More... | |
void | transfer_cover (pod_index_type xsrc, pod_index_type xdst, bool lower) |
Transfers the lower cover (lower == true) or the upper cover (lower == false) from the member with hub id xsrc to the member with hub id xdst. More... | |
poset_table_state & | table () const |
The table of dof tuples of this poset. More... | |
void | initialize_table_dofs (void *xtable_dofs, size_t xtable_dof_ub) |
Initializes the table dofs ("class variables") More... | |
void | initialize_table_dof_tuple (array_poset_dof_map *xdof_tuple) |
Installs xdof_tuple as the table dof tuple. More... | |
void | initialize_dof_id_space (subposet &xdof_subposet) |
Initialize the id space for the dof subposet, xdof_subposet. More... | |
Protected Member Functions inherited from sheaf::read_write_monitor_handle | |
bool | access_guards_disabled () const |
True if thread of control is still in constructor. More... | |
void | disable_access_guards () |
Disables access guards; intended for use only within constructors of monitored objects, where no other client can possibly have access (yet). More... | |
void | enable_access_guards () |
Re-enables access guards. More... | |
Protected Member Functions inherited from sheaf::any | |
any () | |
default constructor More... | |
Static Protected Member Functions inherited from sheaf::poset_state_handle | |
static poset_state_handle * | new_poset_handle (const std::string &xclass_name, poset_type xsheaf_base_class_id) |
Creates an unattached handle of type xclass_name, if a prototype of that name exists, otherwise of type xsheaf_base_class_id. More... | |
static poset_handle_factory & | factory () |
The poset handle factory. More... | |
static const std::string & | VERSION_PREFIX () |
The prefix which begins the name of every version subposet. More... | |
static int | VERSION_PREFIX_LENGTH () |
The length of _version_prefix. More... | |
Protected Attributes inherited from sheaf::poset_state_handle | |
poset_state * | _state |
State object for this poset. More... | |
namespace_poset * | _name_space |
The namespace this poset resides in. More... | |
scoped_index | _index |
The member index of this poset in the namespace. More... | |
abstract_poset_member * | _top |
Top member of poset. More... | |
abstract_poset_member * | _bottom |
Bottom members of poset. More... | |
subposet | _resident |
The subposet of members with resident dof tuples. More... | |
The default name space; a poset which contains other posets as members.
Definition at line 68 of file namespace_poset.h.
The type of schema member for this class.
Definition at line 662 of file namespace_poset.h.
sheaf::namespace_poset::namespace_poset | ( | const std::string & | xname | ) |
Creates a new namespace with name xname.
Definition at line 120 of file namespace_poset.cc.
References new_state(), and ~namespace_poset().
|
virtual |
Destructor.
Definition at line 143 of file namespace_poset.cc.
References _namespace_schema, sheaf::poset_state_handle::_state, sheaf::abstract_poset_member::attach_to_state(), begin_jim_edit_mode(), clear(), sheaf::abstract_poset_member::delete_state(), sheaf::poset_state_handle::detach_from_state(), detach_from_state(), sheaf::schema_poset_member::detach_from_state(), sheaf::any::disable_invariant_check(), sheaf::primitives_poset_schema::get_read_write_access(), sheaf::poset_state_handle::get_read_write_access(), sheaf::poset_state_handle::index(), sheaf::poset_state_handle::is_attached(), namespace_poset(), sheaf::primitives_poset_schema::release_access(), sheaf::poset_state_handle::release_access(), row_dof_map(), sheaf::poset_state_handle::row_dof_tuple_ct(), sheaf::poset_dof_map::schema(), sheaf::poset_state_handle::schema(), sheaf::read_write_monitor_handle::state_is_read_write_accessible(), sheaf::poset_state_handle::state_obj(), and sheaf::poset_state_handle::table_dof_map().
Referenced by namespace_poset().
|
protected |
Default constructor; creates an unattached namespace handle.
Definition at line 231 of file namespace_poset.cc.
Referenced by clone(), namespace_poset(), sheaf::sheaves_namespace::sheaves_namespace(), and ~namespace_poset().
|
protected |
Covariant constructor.
Definition at line 238 of file namespace_poset.cc.
References sheaf::poset_state_handle::factory(), sheaf::poset_handle_factory::insert_prototype(), namespace_poset(), sheaf::poset_state_handle::poset_state_handle(), and primitives_schema_path().
|
inlineprotected |
Copy constructor; disabled.
Definition at line 106 of file namespace_poset.h.
|
protectedvirtual |
Initializes the handle data members when this handle is attached to a state.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1880 of file namespace_poset.cc.
References sheaf::poset_state_handle::attach_handle_data_members(), sheaf::poset_state_handle::attach_to_state(), sheaf::any::disable_invariant_check(), sheaf::any::enable_invariant_check(), sheaf::poset_state_handle::is_attached(), name(), namespace_schema(), primitives(), primitives_schema(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by new_state().
|
virtual |
Allow editing of jims and jim order relation.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1556 of file namespace_poset.cc.
References sheaf::poset_state_handle::begin_jim_edit_mode(), and end_jim_edit_mode().
Referenced by class_name(), clear(), fields::field_vd::delete_field_spaces(), fields::field_factory::delete_field_spaces(), delete_poset(), insert_poset(), and ~namespace_poset().
sheaf::namespace_poset_member & sheaf::namespace_poset::bottom | ( | ) |
The bottom member of the poset (mutable version)
Definition at line 2163 of file namespace_poset.cc.
References sheaf::poset_state_handle::_bottom.
Referenced by top().
const sheaf::namespace_poset_member & sheaf::namespace_poset::bottom | ( | ) | const |
The bottom member of the poset (const version)
Definition at line 2180 of file namespace_poset.cc.
References sheaf::poset_state_handle::_bottom, and clear().
|
virtual |
The name of this class.
Reimplemented from sheaf::poset_state_handle.
Reimplemented in fiber_bundle::fiber_bundles_namespace, and sheaf::sheaves_namespace.
Definition at line 1539 of file namespace_poset.cc.
References begin_jim_edit_mode().
Referenced by fiber_bundle::binary_section_space_schema_poset::binary_section_space_schema_poset(), and type_id().
void sheaf::namespace_poset::clear | ( | ) |
Removes all members except the standard members.
Definition at line 2197 of file namespace_poset.cc.
References sheaf::abstract_poset_member::attach_to_state(), begin_jim_edit_mode(), sheaf::poset_state_handle::clear_member_id_spaces(), delete_poset(), sheaf::abstract_poset_member::delete_state(), sheaf::poset_component::detach_from_state(), end_jim_edit_mode(), sheaf::poset_state_handle::has_standard_member_ct(), sheaf::scoped_index::hub_pod(), sheaf::index_iterator::index(), sheaf::poset_component::index(), sheaf::subposet::indexed_member_iterator(), initialize_standard_members(), sheaf::index_iterator::is_done(), sheaf::abstract_poset_member::is_jim(), sheaf::poset_state_handle::is_jim(), sheaf::is_valid(), sheaf::poset_state_handle::member_id_spaces(), sheaf::poset_state_handle::member_index_ub(), sheaf::abstract_poset_member::name(), namespace_schema(), sheaf::index_iterator::next(), sheaf::namespace_poset_member::poset_prereq_id(), sheaf::PREREQ_IDS_UB, primitives(), primitives_schema(), sheaf::zn_to_bool::put(), sheaf::index_iterator::reset(), sheaf::poset_state_handle::standard_member_ct(), sheaf::read_write_monitor_handle::state_is_read_write_accessible(), top(), and sheaf::poset_state_handle::whole().
Referenced by sheaf::storage_agent::begin_read_transaction(), bottom(), and ~namespace_poset().
|
virtual |
Virtual constructor; creates a new handle of the same actual type as this, attached to the same state as this.
Reimplemented from sheaf::poset_state_handle.
Definition at line 2725 of file namespace_poset.cc.
References invariant(), sheaf::any::is_same_type(), and namespace_poset().
Referenced by fiber_bundle::binary_section_space_schema_poset::binary_section_space_schema_poset(), and is_ancestor_of().
bool sheaf::namespace_poset::contains_path | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
True if this contains the poset or poset member specified by xpath.
Definition at line 1095 of file namespace_poset.cc.
References contains_poset(), contains_poset_member(), sheaf::poset_path::member_name(), path_is_auto_read_accessible(), sheaf::poset_path::poset_name(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by sheaf::poset_path::conforms_to(), contains_path(), contains_poset(), link_poset(), fiber_bundle::sec_e1_uniform::new_host(), fiber_bundle::structured_block::new_host(), fiber_bundle::sec_e2_uniform::new_host(), fiber_bundle::sec_e3_uniform::new_host(), fiber_bundle::homogeneous_block::new_host(), fiber_bundle::unstructured_block::new_host(), fiber_bundle::sec_met::new_host(), fiber_bundle::sec_met_ed::new_host(), fiber_bundle::point_block_2d::new_host(), fiber_bundle::point_block_3d::new_host(), fiber_bundle::sec_st3::new_host(), fiber_bundle::sec_st4::new_host(), fiber_bundle::sec_t2::new_host(), fiber_bundle::sec_t3::new_host(), fiber_bundle::sec_at2::new_host(), fiber_bundle::sec_t4::new_host(), fiber_bundle::sec_at3::new_host(), fiber_bundle::zone_nodes_block::new_host(), fiber_bundle::sec_jcb_ed::new_host(), fiber_bundle::sec_st2::new_host(), fiber_bundle::point_block_1d::new_host(), fiber_bundle::sec_ed::new_host(), fiber_bundle::structured_block_3d::new_host(), fiber_bundle::structured_block_2d::new_host(), fiber_bundle::structured_block_1d::new_host(), fiber_bundle::sec_stp::new_host(), fiber_bundle::sec_at1::new_host(), fiber_bundle::sec_atp::new_host(), fiber_bundle::sec_st3_e3::new_host(), fiber_bundle::sec_st4_e2::new_host(), fiber_bundle::sec_st4_e3::new_host(), fiber_bundle::sec_t2_e2::new_host(), fiber_bundle::sec_at2_e2::new_host(), fiber_bundle::sec_e1::new_host(), fiber_bundle::sec_e3::new_host(), fiber_bundle::sec_e4::new_host(), fiber_bundle::sec_met_e1::new_host(), fiber_bundle::sec_met_e2::new_host(), fiber_bundle::sec_st2_e3::new_host(), fiber_bundle::sec_t2_e3::new_host(), fiber_bundle::sec_t3_e3::new_host(), fiber_bundle::sec_t4_e2::new_host(), fiber_bundle::sec_t4_e3::new_host(), fiber_bundle::sec_at2_e3::new_host(), fiber_bundle::sec_at3_e3::new_host(), fiber_bundle::sec_e2::new_host(), fiber_bundle::sec_met_e3::new_host(), fiber_bundle::sec_st2_e2::new_host(), fiber_bundle::sec_at0::new_host(), fiber_bundle::sec_jcb_e13::new_host(), fiber_bundle::sec_jcb_e33::new_host(), fiber_bundle::sec_tp::new_host(), fiber_bundle::sec_jcb_e23::new_host(), fiber_bundle::sec_jcb::new_host(), fiber_bundle::binary_section_space_schema_member::new_host(), fiber_bundle::sec_rep_descriptor::new_host(), fiber_bundle::sec_vd::new_host(), fiber_bundle::sec_tuple::new_host(), fiber_bundle::base_space_member::new_host(), sheaf::abstract_poset_member::new_host(), fiber_bundle::jcb_ed::new_host(), fiber_bundle::stp::new_host(), fiber_bundle::atp::new_host(), fiber_bundle::ed::new_host(), fiber_bundle::met::new_host(), fiber_bundle::at1::new_host(), fiber_bundle::met_ed::new_host(), fiber_bundle::t3::new_host(), fiber_bundle::t4::new_host(), fiber_bundle::t2::new_host(), fiber_bundle::at3::new_host(), fiber_bundle::st3::new_host(), fiber_bundle::st4::new_host(), fiber_bundle::tuple::new_host(), fiber_bundle::st2::new_host(), fiber_bundle::at2::new_host(), fiber_bundle::jcb::new_host(), fiber_bundle::tp::new_host(), fiber_bundle::gln::new_host(), fiber_bundle::vd::new_host(), fiber_bundle::st3_e3::new_host(), fiber_bundle::at3_e3::new_host(), fiber_bundle::st4_e2::new_host(), fiber_bundle::t4_e2::new_host(), fiber_bundle::st4_e3::new_host(), fiber_bundle::met_e1::new_host(), fiber_bundle::e1::new_host(), fiber_bundle::t3_e3::new_host(), fiber_bundle::e2::new_host(), fiber_bundle::e4::new_host(), fiber_bundle::at2_e2::new_host(), fiber_bundle::jcb_e23::new_host(), fiber_bundle::at2_e3::new_host(), fiber_bundle::at0::new_host(), fiber_bundle::st2_e2::new_host(), fiber_bundle::jcb_e13::new_host(), fiber_bundle::st2_e3::new_host(), fiber_bundle::jcb_e33::new_host(), fiber_bundle::t4_e3::new_host(), fiber_bundle::t2_e2::new_host(), fiber_bundle::met_e2::new_host(), fiber_bundle::gl2::new_host(), fiber_bundle::t2_e3::new_host(), fiber_bundle::met_e3::new_host(), fiber_bundle::e3::new_host(), fiber_bundle::gl3::new_host(), sheaf::refinable_poset::new_table(), fiber_bundle::sec_atp_space::new_table(), fiber_bundle::at0_space::new_table(), fiber_bundle::sec_at1_space::new_table(), fiber_bundle::at1_space::new_table(), fiber_bundle::sec_stp_space::new_table(), fiber_bundle::sec_at0_space::new_table(), fiber_bundle::binary_section_space_schema_poset::new_table(), fiber_bundle::atp_space::new_table(), fiber_bundle::stp_space::new_table(), fiber_bundle::sec_rep_descriptor_poset::new_table(), fiber_bundle::vd_space::new_table(), fiber_bundle::tuple_space::new_table(), fiber_bundle::sec_vd_space::new_table(), fiber_bundle::sec_tp_space::new_table(), fiber_bundle::tp_space::new_table(), fiber_bundle::gln_space::new_table(), fiber_bundle::sec_tuple_space::new_table(), fiber_bundle::jcb_space::new_table(), fiber_bundle::sec_jcb_space::new_table(), fiber_bundle::base_space_poset::new_table(), path_is_auto_read_accessible(), path_is_auto_read_available(), path_is_auto_read_write_accessible(), path_is_auto_read_write_available(), path_is_available(), fiber_bundle::sec_e1_uniform::standard_host(), fiber_bundle::sec_e3_uniform::standard_host(), fiber_bundle::sec_e2_uniform::standard_host(), fiber_bundle::point_block_2d::standard_host(), fiber_bundle::unstructured_block::standard_host(), fiber_bundle::point_block_3d::standard_host(), fiber_bundle::zone_nodes_block::standard_host(), fiber_bundle::point_block_1d::standard_host(), fiber_bundle::structured_block_3d::standard_host(), fiber_bundle::structured_block_2d::standard_host(), fiber_bundle::structured_block_1d::standard_host(), fiber_bundle::sec_st4_e3::standard_host(), fiber_bundle::sec_st4_e2::standard_host(), fiber_bundle::sec_t2_e2::standard_host(), fiber_bundle::sec_st3_e3::standard_host(), fiber_bundle::sec_st2_e3::standard_host(), fiber_bundle::sec_e1::standard_host(), fiber_bundle::sec_e4::standard_host(), fiber_bundle::sec_met_e1::standard_host(), fiber_bundle::sec_e3::standard_host(), fiber_bundle::sec_met_e2::standard_host(), fiber_bundle::sec_at2_e2::standard_host(), fiber_bundle::sec_t4_e3::standard_host(), fiber_bundle::sec_t2_e3::standard_host(), fiber_bundle::sec_t4_e2::standard_host(), fiber_bundle::sec_t3_e3::standard_host(), fiber_bundle::sec_at3_e3::standard_host(), fiber_bundle::sec_e2::standard_host(), fiber_bundle::sec_at2_e3::standard_host(), fiber_bundle::sec_st2_e2::standard_host(), fiber_bundle::sec_met_e3::standard_host(), fiber_bundle::sec_at0::standard_host(), fiber_bundle::sec_jcb_e13::standard_host(), fiber_bundle::sec_jcb_e33::standard_host(), fiber_bundle::sec_jcb_e23::standard_host(), sheaf::schema_poset_member::standard_host(), fiber_bundle::sec_rep_descriptor::standard_host(), fiber_bundle::binary_section_space_schema_member::standard_host(), fiber_bundle::base_space_member::standard_host(), fiber_bundle::st3_e3::standard_host(), fiber_bundle::at3_e3::standard_host(), fiber_bundle::st4_e2::standard_host(), fiber_bundle::t4_e2::standard_host(), fiber_bundle::st4_e3::standard_host(), fiber_bundle::met_e1::standard_host(), fiber_bundle::e1::standard_host(), fiber_bundle::t3_e3::standard_host(), fiber_bundle::e2::standard_host(), fiber_bundle::e4::standard_host(), fiber_bundle::at2_e2::standard_host(), fiber_bundle::jcb_e23::standard_host(), fiber_bundle::at2_e3::standard_host(), fiber_bundle::at0::standard_host(), fiber_bundle::st2_e2::standard_host(), fiber_bundle::jcb_e13::standard_host(), fiber_bundle::st2_e3::standard_host(), fiber_bundle::jcb_e33::standard_host(), fiber_bundle::t4_e3::standard_host(), fiber_bundle::t2_e2::standard_host(), fiber_bundle::met_e2::standard_host(), fiber_bundle::gl2::standard_host(), fiber_bundle::t2_e3::standard_host(), fiber_bundle::met_e3::standard_host(), fiber_bundle::e3::standard_host(), and fiber_bundle::gl3::standard_host().
bool sheaf::namespace_poset::contains_path | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
True if this contains the poset or poset member specified by xpath and the poset conforms to poset type P.
Definition at line 237 of file namespace_poset.impl.h.
References contains_path(), member_poset(), and path_is_auto_read_accessible().
bool sheaf::namespace_poset::contains_poset | ( | pod_index_type | xhub_id, |
bool | xauto_access | ||
) | const |
Definition at line 160 of file namespace_poset.impl.h.
References sheaf::poset_state_handle::contains_member(), contains_poset(), get_read_access(), sheaf::poset_state_handle::is_jim(), member_poset(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
bool sheaf::namespace_poset::contains_poset | ( | const scoped_index & | xid, |
bool | xauto_access | ||
) | const |
Definition at line 194 of file namespace_poset.impl.h.
References contains_poset(), get_read_access(), sheaf::scoped_index::hub_pod(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
bool sheaf::namespace_poset::contains_poset | ( | pod_index_type | xhub_id, |
bool | xauto_access = true |
||
) | const |
True if this contains a poset with hub id xhub_id..
Definition at line 326 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), get_read_access(), sheaf::poset_state_handle::is_jim(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by fiber_bundle::constant_eval_family::constant_eval_family(), contains_path(), contains_poset(), contains_poset_member(), contains_poset_members(), contains_poset_subposet(), sheaf::poset_scaffold::convert_member_id_to_record_id(), fiber_bundle::vd_space::d(), fiber_bundle::sec_vd_space::d(), delete_poset(), fiber_bundle::dlinear_eval_family::dlinear_eval_family(), fiber_bundle::uniform_eval_family::initialize(), fiber_bundle::dlinear_eval_family::initialize(), fiber_bundle::constant_eval_family::initialize(), fields::make_base_space(), fiber_bundle::fiber_bundles_namespace::make_base_space_definitions(), fiber_bundle::fiber_bundles_namespace::make_base_space_member_prototypes_poset(), fiber_bundle::fiber_bundles_namespace::make_base_space_schema_members(), fiber_bundle::fiber_bundles_namespace::make_base_space_schema_poset(), fiber_bundle::fiber_bundles_namespace::make_fiber_space_definitions(), fiber_bundle::fiber_bundles_namespace::make_fiber_space_schema_members(), fiber_bundle::fiber_bundles_namespace::make_fiber_space_schema_poset(), sheaf::schema_poset_member::make_schema(), fiber_bundle::fiber_bundles_namespace::make_sec_rep_descriptor_poset(), fiber_bundle::fiber_bundles_namespace::make_sec_rep_descriptor_schema_members(), fiber_bundle::fiber_bundles_namespace::make_sec_rep_descriptor_schema_poset(), fiber_bundle::fiber_bundles_namespace::make_section_space_definitions(), fiber_bundle::fiber_bundles_namespace::make_section_space_schema_schema_members(), fiber_bundle::fiber_bundles_namespace::make_section_space_schema_schema_poset(), fiber_bundle::binary_section_space_schema_member::make_standard_schema(), fiber_bundle::sec_rep_descriptor::make_standard_schema(), fiber_bundle::section_space_schema_member::make_standard_schema(), fiber_bundle::section_space_schema_poset::make_standard_schema(), fiber_bundle::base_space_member::make_standard_schema(), fiber_bundle::product_section_space_schema_poset::make_standard_schema(), fiber_bundle::jcb_ed::make_standard_schema(), fiber_bundle::stp::make_standard_schema(), fiber_bundle::atp::make_standard_schema(), fiber_bundle::ed::make_standard_schema(), fiber_bundle::met::make_standard_schema(), fiber_bundle::met_ed::make_standard_schema(), fiber_bundle::at1::make_standard_schema(), fiber_bundle::tuple::make_standard_schema(), fiber_bundle::t3::make_standard_schema(), fiber_bundle::t4::make_standard_schema(), fiber_bundle::t2::make_standard_schema(), fiber_bundle::at3::make_standard_schema(), fiber_bundle::st3::make_standard_schema(), fiber_bundle::st4::make_standard_schema(), fiber_bundle::at2::make_standard_schema(), fiber_bundle::st2::make_standard_schema(), fiber_bundle::jcb::make_standard_schema(), fiber_bundle::tp::make_standard_schema(), fiber_bundle::gln::make_standard_schema(), fiber_bundle::vd::make_standard_schema(), fiber_bundle::st3_e3::make_standard_schema(), fiber_bundle::at3_e3::make_standard_schema(), fiber_bundle::st4_e2::make_standard_schema(), fiber_bundle::t4_e2::make_standard_schema(), fiber_bundle::st4_e3::make_standard_schema(), fiber_bundle::met_e1::make_standard_schema(), fiber_bundle::e1::make_standard_schema(), fiber_bundle::t3_e3::make_standard_schema(), fiber_bundle::e2::make_standard_schema(), fiber_bundle::e4::make_standard_schema(), fiber_bundle::at2_e2::make_standard_schema(), fiber_bundle::jcb_e23::make_standard_schema(), fiber_bundle::at2_e3::make_standard_schema(), fiber_bundle::at0::make_standard_schema(), fiber_bundle::st2_e2::make_standard_schema(), fiber_bundle::jcb_e13::make_standard_schema(), fiber_bundle::jcb_e33::make_standard_schema(), fiber_bundle::st2_e3::make_standard_schema(), fiber_bundle::t4_e3::make_standard_schema(), fiber_bundle::t2_e2::make_standard_schema(), fiber_bundle::met_e2::make_standard_schema(), fiber_bundle::gl2::make_standard_schema(), fiber_bundle::t2_e3::make_standard_schema(), fiber_bundle::met_e3::make_standard_schema(), fiber_bundle::e3::make_standard_schema(), fiber_bundle::gl3::make_standard_schema(), member_poset(), member_poset_schema_id(), fields::body_factory::new_1d_uniform_bodies(), fields::body_factory::new_1d_unstructured_bodies(), fields::field_factory::new_2d_structured_base_space(), fields::body_factory::new_2d_uniform_bodies(), fields::body_factory::new_2d_unstructured_bodies(), fields::body_factory::new_3d_uniform_bodies(), fields::body_factory::new_3d_unstructured_bodies(), sheaf::schema_poset_member::new_host(), fiber_bundle::stp::new_host(), fiber_bundle::atp::new_host(), fiber_bundle::ed::new_host(), fiber_bundle::met::new_host(), fiber_bundle::met_ed::new_host(), fiber_bundle::at1::new_host(), fiber_bundle::t3::new_host(), fiber_bundle::t4::new_host(), fiber_bundle::t2::new_host(), fiber_bundle::at3::new_host(), fiber_bundle::st4::new_host(), fiber_bundle::st3::new_host(), fiber_bundle::st2::new_host(), fiber_bundle::at2::new_host(), fiber_bundle::tp::new_host(), fiber_bundle::gln::new_host(), fiber_bundle::vd::new_host(), fiber_bundle::st3_e3::new_host(), fiber_bundle::at3_e3::new_host(), fiber_bundle::st4_e2::new_host(), fiber_bundle::t4_e2::new_host(), fiber_bundle::st4_e3::new_host(), fiber_bundle::met_e1::new_host(), fiber_bundle::e1::new_host(), fiber_bundle::t3_e3::new_host(), fiber_bundle::e2::new_host(), fiber_bundle::e4::new_host(), fiber_bundle::at2_e2::new_host(), fiber_bundle::jcb_e23::new_host(), fiber_bundle::at2_e3::new_host(), fiber_bundle::st2_e2::new_host(), fiber_bundle::jcb_e13::new_host(), fiber_bundle::st2_e3::new_host(), fiber_bundle::jcb_e33::new_host(), fiber_bundle::t4_e3::new_host(), fiber_bundle::t2_e2::new_host(), fiber_bundle::met_e2::new_host(), fiber_bundle::gl2::new_host(), fiber_bundle::t2_e3::new_host(), fiber_bundle::met_e3::new_host(), fiber_bundle::e3::new_host(), fiber_bundle::gl3::new_host(), sheaf::schema_poset_member::new_jim_state(), fields::field_factory::new_property(), fields::field_factory::new_scalar_field_1d_points(), fields::field_factory::new_scalar_field_1d_uniform(), fields::field_factory::new_scalar_field_1d_unstructured(), fields::field_factory::new_scalar_field_2d_points(), fields::field_factory::new_scalar_field_2d_uniform(), fields::field_factory::new_scalar_field_2d_unstructured(), fields::field_factory::new_scalar_field_3d_points(), fields::field_factory::new_scalar_field_3d_uniform(), fields::field_factory::new_scalar_field_3d_unstructured(), fiber_bundle::base_space_factory< base_type >::new_space(), fiber_bundle::product_section_space_schema_poset::new_state(), sheaf::poset_state_handle::new_state(), sheaf::poset::new_table(), owns(), poset_state_is_read_accessible(), poset_state_is_read_write_accessible(), primitives_schema_path(), fiber_bundle::section_space_schema_poset::rep_is_valid(), fiber_bundle::vd_space::scalar_space_path(), fiber_bundle::sec_vd_space::scalar_space_path(), fiber_bundle::tuple::standard_host_is_available(), fiber_bundle::group::standard_host_is_available(), and fiber_bundle::uniform_eval_family::uniform_eval_family().
bool sheaf::namespace_poset::contains_poset | ( | const scoped_index & | xid, |
bool | xauto_access = true |
||
) | const |
True if this contains a poset with id xid.
Definition at line 357 of file namespace_poset.cc.
References contains_poset(), sheaf::scoped_index::hub_pod(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
bool sheaf::namespace_poset::contains_poset | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
Definition at line 213 of file namespace_poset.impl.h.
References contains_path(), contains_poset(), member_poset(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
SHEAF_DLL_SPEC bool sheaf::namespace_poset::contains_poset | ( | pod_index_type | xhub_id, |
bool | xauto_access = true |
||
) | const |
True if and only if this contains a poset with hub id xhub_id and the poset conforms to type P.
SHEAF_DLL_SPEC bool sheaf::namespace_poset::contains_poset | ( | const scoped_index & | id, |
bool | xauto_access = true |
||
) | const |
True if and only if this contains a poset with id xid and the poset conforms to type P.
bool sheaf::namespace_poset::contains_poset | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
True if this contains a poset with name xpath.poset_name().
Definition at line 372 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), get_read_access(), sheaf::poset_state_handle::is_jim(), owns(), sheaf::poset_path::poset_name(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
SHEAF_DLL_SPEC bool sheaf::namespace_poset::contains_poset | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
True if and only if this contains a poset with name xpath.poset_name() and the poset conforms (can be dynamically cast) to type P.
bool sheaf::namespace_poset::contains_poset_member | ( | pod_index_type | xposet_hub_id, |
pod_index_type | xmember_hub_id, | ||
bool | xauto_access = true |
||
) | const |
True if this contains a poset with hub id xposet_hub_id which contains a member with hub id xmember_hub_id.
Definition at line 425 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), contains_poset(), get_read_access(), member_poset(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by sheaf::abstract_poset_member::attach_to_state(), fiber_bundle::base_space_member::base_space_member(), fields::body_pusher::body_pusher(), fiber_bundle::unstructured_block_builder::build_block_decomposition(), contains_path(), contains_poset_member(), fiber_bundle::section_space_schema_member::fiber_schema_conforms_to(), fields::field_at0::field_at0(), fields::field_at1::field_at1(), fields::field_at2::field_at2(), fields::field_at2_e2::field_at2_e2(), fields::field_at2_e3::field_at2_e3(), fields::field_at3::field_at3(), fields::field_at3_e3::field_at3_e3(), fields::field_atp::field_atp(), fields::field_e1::field_e1(), fields::field_e1_uniform::field_e1_uniform(), fields::field_e2::field_e2(), fields::field_e2_uniform::field_e2_uniform(), fields::field_e3::field_e3(), fields::field_e3_uniform::field_e3_uniform(), fields::field_e4::field_e4(), fields::field_ed::field_ed(), fields::field_jcb::field_jcb(), fields::field_jcb_e13::field_jcb_e13(), fields::field_jcb_e23::field_jcb_e23(), fields::field_jcb_e33::field_jcb_e33(), fields::field_jcb_ed::field_jcb_ed(), fields::field_met::field_met(), fields::field_met_e1::field_met_e1(), fields::field_met_e2::field_met_e2(), fields::field_met_e3::field_met_e3(), fields::field_met_ed::field_met_ed(), fields::field_st2::field_st2(), fields::field_st2_e2::field_st2_e2(), fields::field_st2_e3::field_st2_e3(), fields::field_st3::field_st3(), fields::field_st3_e3::field_st3_e3(), fields::field_st4::field_st4(), fields::field_st4_e2::field_st4_e2(), fields::field_st4_e3::field_st4_e3(), fields::field_stp::field_stp(), fields::field_t2::field_t2(), fields::field_t2_e2::field_t2_e2(), fields::field_t2_e3::field_t2_e3(), fields::field_t3::field_t3(), fields::field_t3_e3::field_t3_e3(), fields::field_t4::field_t4(), fields::field_t4_e2::field_t4_e2(), fields::field_t4_e3::field_t4_e3(), fields::field_tp::field_tp(), fields::field_vd::field_vd(), fields::make_base_space(), fiber_bundle::fiber_bundles_namespace::make_base_space_member_prototypes_poset(), sheaf::schema_poset_member::make_schema(), fiber_bundle::binary_section_space_schema_member::make_standard_schema(), fiber_bundle::sec_rep_descriptor::make_standard_schema(), fiber_bundle::section_space_schema_member::make_standard_schema(), fiber_bundle::section_space_schema_poset::make_standard_schema(), fiber_bundle::base_space_member::make_standard_schema(), fiber_bundle::product_section_space_schema_poset::make_standard_schema(), fiber_bundle::jcb_ed::make_standard_schema(), fiber_bundle::atp::make_standard_schema(), fiber_bundle::stp::make_standard_schema(), fiber_bundle::ed::make_standard_schema(), fiber_bundle::met::make_standard_schema(), fiber_bundle::met_ed::make_standard_schema(), fiber_bundle::at1::make_standard_schema(), fiber_bundle::tuple::make_standard_schema(), fiber_bundle::t3::make_standard_schema(), fiber_bundle::t4::make_standard_schema(), fiber_bundle::t2::make_standard_schema(), fiber_bundle::at3::make_standard_schema(), fiber_bundle::st4::make_standard_schema(), fiber_bundle::st3::make_standard_schema(), fiber_bundle::at2::make_standard_schema(), fiber_bundle::st2::make_standard_schema(), fiber_bundle::jcb::make_standard_schema(), fiber_bundle::tp::make_standard_schema(), fiber_bundle::gln::make_standard_schema(), fiber_bundle::vd::make_standard_schema(), fiber_bundle::st3_e3::make_standard_schema(), fiber_bundle::at3_e3::make_standard_schema(), fiber_bundle::st4_e2::make_standard_schema(), fiber_bundle::t4_e2::make_standard_schema(), fiber_bundle::st4_e3::make_standard_schema(), fiber_bundle::met_e1::make_standard_schema(), fiber_bundle::e1::make_standard_schema(), fiber_bundle::t3_e3::make_standard_schema(), fiber_bundle::e2::make_standard_schema(), fiber_bundle::e4::make_standard_schema(), fiber_bundle::at2_e2::make_standard_schema(), fiber_bundle::jcb_e23::make_standard_schema(), fiber_bundle::at2_e3::make_standard_schema(), fiber_bundle::at0::make_standard_schema(), fiber_bundle::st2_e2::make_standard_schema(), fiber_bundle::jcb_e13::make_standard_schema(), fiber_bundle::jcb_e33::make_standard_schema(), fiber_bundle::st2_e3::make_standard_schema(), fiber_bundle::t4_e3::make_standard_schema(), fiber_bundle::t2_e2::make_standard_schema(), fiber_bundle::met_e2::make_standard_schema(), fiber_bundle::gl2::make_standard_schema(), fiber_bundle::t2_e3::make_standard_schema(), fiber_bundle::met_e3::make_standard_schema(), fiber_bundle::e3::make_standard_schema(), fiber_bundle::gl3::make_standard_schema(), fields::body_factory::new_1d_uniform_bodies(), fields::body_factory::new_1d_unstructured_bodies(), fields::field_factory::new_1d_unstructured_coordinates(), fields::body_factory::new_2d_uniform_bodies(), fields::body_factory::new_2d_unstructured_bodies(), fields::field_factory::new_2d_unstructured_coordinates(), fields::body_factory::new_3d_uniform_bodies(), fields::body_factory::new_3d_unstructured_bodies(), fields::field_factory::new_3d_unstructured_coordinates(), fiber_bundle::base_space_factory< base_type >::new_base(), sheaf::schema_poset_member::new_jim_state(), fiber_bundle::structured_block_1d::new_row_dof_map(), fiber_bundle::point_block_1d::new_row_dof_map(), fiber_bundle::structured_block_2d::new_row_dof_map(), fiber_bundle::point_block_2d::new_row_dof_map(), fiber_bundle::structured_block_3d::new_row_dof_map(), fiber_bundle::point_block_3d::new_row_dof_map(), fiber_bundle::point_block_2d::new_state(), fiber_bundle::structured_block_1d::new_state(), fiber_bundle::point_block_1d::new_state(), fiber_bundle::structured_block_2d::new_state(), fiber_bundle::point_block_3d::new_state(), fiber_bundle::structured_block_3d::new_state(), owns(), fiber_bundle::base_space_member::prototype_path(), and fiber_bundle::section_space_schema_poset::rep_is_valid().
bool sheaf::namespace_poset::contains_poset_member | ( | const scoped_index & | xposet_id, |
const scoped_index & | xmember_id, | ||
bool | xauto_access = true |
||
) | const |
True if this contains a poset with index xposet_id which contains a member with index xmember_id.
Definition at line 464 of file namespace_poset.cc.
References contains_poset(), contains_poset_member(), sheaf::scoped_index::hub_pod(), member_poset(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
bool sheaf::namespace_poset::contains_poset_member | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
True if this contains the poset and member specified by xpath.
Definition at line 487 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), contains_poset(), contains_poset_members(), sheaf::poset_path::full(), get_read_access(), sheaf::poset_path::member_name(), member_poset(), poset_state_is_read_accessible(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
bool sheaf::namespace_poset::contains_poset_members | ( | const std::string & | xposet_name, |
const std::string | xmember_names[], | ||
int | xmember_names_ct, | ||
bool | xauto_access = true |
||
) | const |
True if this contains a poset with name xposet_name which contains all members with names in array xmember_name.
Definition at line 527 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), sheaf::poset_state_handle::contains_members(), contains_poset(), contains_poset_subposet(), member_poset(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by contains_poset_member().
bool sheaf::namespace_poset::contains_poset_subposet | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
True if this contains the poset and subposet specified by xpath.
Definition at line 562 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), contains_poset(), sheaf::poset_path::full(), get_read_access(), sheaf::poset_state_handle::includes_subposet(), sheaf::poset_path::member_name(), member_poset(), sheaf::poset_path::poset_name(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by contains_poset_members().
|
static |
The current default namespace.
Definition at line 1276 of file namespace_poset.cc.
References put_current_namespace().
Referenced by sheaf::poset_path::current_namespace(), new_state(), poset_state_is_read_write_accessible(), put_current_namespace(), and sheaf::sheaves_namespace::sheaves_namespace().
void sheaf::namespace_poset::delete_poset | ( | pod_index_type | xhub_id, |
bool | xauto_access | ||
) |
Delete the poset with hub id xhub_id.
Definition at line 725 of file namespace_poset.cc.
References begin_jim_edit_mode(), contains_poset(), end_jim_edit_mode(), sheaf::poset_state_handle::in_jim_edit_mode(), member_poset(), and sheaf::read_write_monitor_handle::state_is_auto_read_write_accessible().
Referenced by clear(), fields::field_vd::delete_field_spaces(), fields::field_factory::delete_field_spaces(), delete_poset(), and member_poset_schema_id().
void sheaf::namespace_poset::delete_poset | ( | scoped_index | xid, |
bool | xauto_access | ||
) |
Delete the poset with id xid.
Definition at line 760 of file namespace_poset.cc.
References contains_poset(), delete_poset(), sheaf::scoped_index::hub_pod(), sheaf::poset_state_handle::in_jim_edit_mode(), member_poset(), and sheaf::read_write_monitor_handle::state_is_auto_read_write_accessible().
void sheaf::namespace_poset::delete_poset | ( | std::string | xname, |
bool | xauto_access | ||
) |
Delete the poset with name xname.
Definition at line 791 of file namespace_poset.cc.
References contains_poset(), delete_poset(), sheaf::poset_state_handle::in_jim_edit_mode(), sheaf::poset_state_handle::member_id(), member_poset(), and sheaf::read_write_monitor_handle::state_is_auto_read_write_accessible().
void sheaf::namespace_poset::delete_poset | ( | poset_path | xpath, |
bool | xauto_access | ||
) |
Delete the poset with name xpath.poset_name().
Definition at line 819 of file namespace_poset.cc.
References contains_poset(), delete_poset(), sheaf::poset_state_handle::in_jim_edit_mode(), sheaf::poset_state_handle::member_id(), member_poset(), sheaf::poset_path::poset_name(), and sheaf::read_write_monitor_handle::state_is_auto_read_write_accessible().
void sheaf::namespace_poset::delete_poset | ( | namespace_poset_member & | xmbr | ) |
Delete the poset associated with xmbr.
Definition at line 847 of file namespace_poset.cc.
References contains_poset(), sheaf::abstract_poset_member::delete_state(), sheaf::poset_state_handle::get_read_write_access(), sheaf::poset_state_handle::in_jim_edit_mode(), sheaf::poset_component::index(), insert_poset(), sheaf::poset_component::is_attached(), sheaf::abstract_poset_member::is_jim(), sheaf::namespace_poset_member::poset_pointer(), sheaf::namespace_poset_member::put_poset_class(), sheaf::namespace_poset_member::put_poset_pointer(), sheaf::namespace_poset_member::put_poset_type_id(), and sheaf::read_write_monitor_handle::state_is_auto_read_write_accessible().
|
protectedvirtual |
Detaches this from its state.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1713 of file namespace_poset.cc.
References sheaf::poset_state_handle::detach_from_state(), sheaf::poset_state_handle::is_attached(), sheaf::poset_state_handle::is_external(), namespace_schema(), new_state(), primitives(), and primitives_schema().
Referenced by new_state(), release_access(), and ~namespace_poset().
|
virtual |
prevent editing of jims and jim order relation
Reimplemented from sheaf::poset_state_handle.
Definition at line 1573 of file namespace_poset.cc.
References sheaf::poset_state_handle::end_jim_edit_mode(), and get_read_access().
Referenced by begin_jim_edit_mode(), clear(), fields::field_vd::delete_field_spaces(), fields::field_factory::delete_field_spaces(), delete_poset(), and insert_poset().
const sheaf::index_space_handle & sheaf::namespace_poset::get_member_poset_id_space | ( | bool | xauto_access | ) | const |
Allocates a handle for the id space for member posets from the pool of id space handles.
Definition at line 2473 of file namespace_poset.cc.
References sheaf::index_space_family::get_id_space(), get_read_access(), sheaf::index_space_handle::is_attached(), sheaf::poset_state_handle::member_id_spaces(), sheaf::index_space_handle::name(), release_access(), release_member_poset_id_space(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by initialize_additional_members().
sheaf::index_space_iterator & sheaf::namespace_poset::get_member_poset_id_space_iterator | ( | bool | xauto_access | ) | const |
Allocates a iterator for the id space for member posets. from the pool of id space iterators.
Definition at line 2535 of file namespace_poset.cc.
References sheaf::index_space_family::get_id_space_iterator(), get_read_access(), sheaf::index_space_iterator::is_attached(), sheaf::poset_state_handle::member_id_spaces(), sheaf::index_space_iterator::name(), release_access(), release_member_poset_id_space_iterator(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by release_member_poset_id_space().
|
virtual |
Get read access to the state associated with this.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1590 of file namespace_poset.cc.
References sheaf::read_write_monitor_handle::access_request_depth(), sheaf::poset_state_handle::get_read_access(), get_read_write_access(), sheaf::poset_state_handle::is_attached(), primitives(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by sheaf::abstract_poset_member::attach_to_state(), fiber_bundle::unstructured_block_builder::build_block_decomposition(), sheaf::schema_poset_member::conforms_to(), contains_poset(), contains_poset_member(), contains_poset_subposet(), sheaf::schema_poset_member::dof_ct(), end_jim_edit_mode(), fiber_bundle::section_space_schema_member::fiber_schema_conforms_to(), fields::field_at0::field_at0(), fields::field_at1::field_at1(), fields::field_at2::field_at2(), fields::field_at2_e2::field_at2_e2(), fields::field_at2_e3::field_at2_e3(), fields::field_at3::field_at3(), fields::field_at3_e3::field_at3_e3(), fields::field_atp::field_atp(), fields::field_e1::field_e1(), fields::field_e1_uniform::field_e1_uniform(), fields::field_e2::field_e2(), fields::field_e2_uniform::field_e2_uniform(), fields::field_e3::field_e3(), fields::field_e3_uniform::field_e3_uniform(), fields::field_e4::field_e4(), fields::field_ed::field_ed(), fields::field_jcb::field_jcb(), fields::field_jcb_e13::field_jcb_e13(), fields::field_jcb_e23::field_jcb_e23(), fields::field_jcb_e33::field_jcb_e33(), fields::field_jcb_ed::field_jcb_ed(), fields::field_met::field_met(), fields::field_met_e1::field_met_e1(), fields::field_met_e2::field_met_e2(), fields::field_met_e3::field_met_e3(), fields::field_met_ed::field_met_ed(), fields::field_st2::field_st2(), fields::field_st2_e2::field_st2_e2(), fields::field_st2_e3::field_st2_e3(), fields::field_st3::field_st3(), fields::field_st3_e3::field_st3_e3(), fields::field_st4::field_st4(), fields::field_st4_e2::field_st4_e2(), fields::field_st4_e3::field_st4_e3(), fields::field_stp::field_stp(), fields::field_t2::field_t2(), fields::field_t2_e2::field_t2_e2(), fields::field_t2_e3::field_t2_e3(), fields::field_t3::field_t3(), fields::field_t3_e3::field_t3_e3(), fields::field_t4::field_t4(), fields::field_t4_e2::field_t4_e2(), fields::field_t4_e3::field_t4_e3(), fields::field_tp::field_tp(), fields::field_vd::field_vd(), get_member_poset_id_space(), get_member_poset_id_space_iterator(), sheaf::schema_poset_member::make_schema(), member_poset(), member_poset_schema_id(), sheaf::schema_poset_member::new_jim_state(), fiber_bundle::homogeneous_block::new_row_dof_map(), fiber_bundle::point_block_1d::new_row_dof_map(), fiber_bundle::point_block_2d::new_row_dof_map(), fiber_bundle::point_block_3d::new_row_dof_map(), fiber_bundle::base_space_member::new_row_dof_map(), fiber_bundle::point_block_2d::new_state(), fiber_bundle::structured_block_1d::new_state(), fiber_bundle::point_block_1d::new_state(), fiber_bundle::structured_block_2d::new_state(), fiber_bundle::point_block_3d::new_state(), fiber_bundle::structured_block_3d::new_state(), fiber_bundle::zone_nodes_block::new_state(), fiber_bundle::unstructured_block::new_state(), sheaf::operator<<(), release_member_poset_id_space(), release_member_poset_id_space_iterator(), sheaf::sheaves_namespace::sheaves_namespace(), fiber_bundle::tuple::standard_host_is_available(), and fiber_bundle::group::standard_host_is_available().
|
virtual |
Get read write access to the state associated with this. If release_read_only_access is requested, read only access will be released then read_write_access will be requested, finally the same level of read_access as before will be requested.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1628 of file namespace_poset.cc.
References sheaf::read_write_monitor_handle::access_request_depth(), sheaf::poset_state_handle::get_read_access(), sheaf::poset_state_handle::get_read_write_access(), sheaf::poset_state_handle::is_attached(), primitives(), release_access(), sheaf::read_write_monitor_handle::state_is_not_read_only_accessible(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by get_read_access(), sheaf::sheaves_namespace::make_triangle(), fields::field_factory_2< coord_type, prop_type, base_type >::new_field(), fiber_bundle::product_section_space_schema_poset::new_state(), new_state(), and fields::field_factory_2< coord_type, prop_type, base_type >::standard_field().
|
protectedvirtual |
Creates additional members for this namespace.
Reimplemented in fiber_bundle::fiber_bundles_namespace.
Definition at line 2440 of file namespace_poset.cc.
References sheaf::read_write_monitor_handle::access_request_depth(), get_member_poset_id_space(), and sheaf::read_write_monitor_handle::state_is_read_write_accessible().
Referenced by initialize_standard_members(), and new_state().
|
static |
Initialize the prototypes needed by crg interval factory method,.
Definition at line 1384 of file namespace_poset.cc.
References initialize_dof_map_prototypes().
Referenced by fiber_bundle::fiber_bundles_namespace::initialize_crg_interval_prototypes(), initialize_poset_prototypes(), and initialize_prototypes().
|
static |
Initialize the prototypes needed by dof map factory method,.
Definition at line 1417 of file namespace_poset.cc.
References initialize_id_space_prototypes().
Referenced by initialize_crg_interval_prototypes(), fiber_bundle::fiber_bundles_namespace::initialize_dof_map_prototypes(), and initialize_prototypes().
|
static |
Initialize the prototypes needed by id space factory method,.
Definition at line 1451 of file namespace_poset.cc.
References virtual_initialize_prototypes().
Referenced by initialize_dof_map_prototypes(), fiber_bundle::fiber_bundles_namespace::initialize_id_space_prototypes(), and initialize_prototypes().
|
protected |
Creates the member poset id space.
Definition at line 2601 of file namespace_poset.cc.
References sheaf::poset_state_handle::member_id_spaces(), sheaf::array_index_space_state::new_space(), prereq_id(), and sheaf::read_write_monitor_handle::state_is_read_write_accessible().
Referenced by initialize_standard_members(), and release_member_poset_id_space_iterator().
|
protectedvirtual |
Installs this as a member of xns.
Definition at line 2006 of file namespace_poset.cc.
References sheaf::poset_state_handle::_index, sheaf::poset_state_handle::_name_space, sheaf::scoped_index::invalidate(), sheaf::poset_state_handle::member_hub_id_space(), sheaf::scoped_index::put_scope(), row_dof_map_conforms(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by new_state(), and path().
|
static |
Initialize the prototypes needed by poset factory method,.
Definition at line 1346 of file namespace_poset.cc.
References initialize_crg_interval_prototypes().
Referenced by fiber_bundle::fiber_bundles_namespace::initialize_poset_prototypes(), and initialize_prototypes().
|
static |
Initialize all the prototypes needed by various factory methods,.
Definition at line 1326 of file namespace_poset.cc.
References initialize_crg_interval_prototypes(), initialize_dof_map_prototypes(), initialize_id_space_prototypes(), and initialize_poset_prototypes().
Referenced by put_current_namespace(), and virtual_initialize_prototypes().
|
protectedvirtual |
Creates the standard members for this namespace.
Reimplemented from sheaf::poset_state_handle.
Definition at line 2360 of file namespace_poset.cc.
References _namespace_schema, sheaf::poset_component::detach_from_state(), sheaf::poset_state_handle::has_standard_member_ct(), sheaf::poset_state_handle::has_standard_row_dof_tuple_ct(), sheaf::poset_state_handle::host(), sheaf::poset_state_handle::index(), initialize_additional_members(), initialize_member_poset_id_space(), sheaf::poset_state_handle::initialize_namespace(), sheaf::poset_state_handle::initialize_standard_members(), sheaf::poset_state_handle::is_attached(), sheaf::poset_state_handle::member_ct(), sheaf::abstract_poset_member::put_name(), sheaf::poset_state_handle::put_standard_member_ct(), sheaf::poset_state_handle::put_standard_row_dof_tuple_ct(), sheaf::poset_state_handle::row_dof_tuple_ct(), sheaf::namespace_poset_schema::standard_name(), sheaf::primitives_poset_schema::standard_name(), and sheaf::primitives_poset::standard_name().
Referenced by clear(), and new_state().
|
protected |
Inserts xposet into this namespace with member name xposet_name.
Definition at line 897 of file namespace_poset.cc.
References sheaf::abstract_poset_member::attach_to_state(), begin_jim_edit_mode(), sheaf::poset_state_handle::contains_member(), end_jim_edit_mode(), sheaf::index_space_family::get_id_space(), link_poset(), sheaf::poset_state_handle::member_id_spaces(), member_poset(), sheaf::gathered_insertion_index_space_handle::push_back(), release_member_poset_id_space(), sheaf::read_write_monitor_handle::state_is_read_accessible(), and sheaf::read_write_monitor_handle::state_is_read_write_accessible().
Referenced by delete_poset(), and sheaf::poset_state_handle::initialize_namespace().
|
protected |
Inserts xposet into this namespace with member name xposet_name.
Definition at line 976 of file namespace_poset.cc.
References begin_jim_edit_mode(), sheaf::poset_state_handle::contains_member(), end_jim_edit_mode(), sheaf::index_space_family::get_id_space(), sheaf::poset_state_handle::get_read_access(), sheaf::poset_state_handle::in_jim_edit_mode(), link_poset(), sheaf::poset_state_handle::member_id_spaces(), member_poset(), sheaf::gathered_insertion_index_space_handle::push_back(), sheaf::poset_state_handle::release_access(), release_member_poset_id_space(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
|
virtual |
Class invariant.
Reimplemented from sheaf::poset_state_handle.
Definition at line 2747 of file namespace_poset.cc.
References sheaf::any::disable_invariant_check(), sheaf::any::enable_invariant_check(), sheaf::poset_state_handle::host(), sheaf::poset_state_handle::index(), sheaf::poset_state_handle::invariant(), sheaf::any::invariant_check(), sheaf::poset_state_handle::is_attached(), sheaf::poset_state_handle::is_external(), sheaf::is_valid(), sheaf::operator<<(), primitives(), primitives_schema(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by fiber_bundle::binary_section_space_schema_poset::binary_section_space_schema_poset(), clone(), new_state(), and sheaf::sheaves_namespace::sheaves_namespace().
|
virtual |
True if other conforms to this.
Reimplemented from sheaf::poset_state_handle.
Reimplemented in geometry::geometry_namespace.
Definition at line 2706 of file namespace_poset.cc.
References clone().
Referenced by fiber_bundle::binary_section_space_schema_poset::binary_section_space_schema_poset(), and to_string().
|
protectedvirtual |
Links xmbr into the appropriate group.
Reimplemented in fiber_bundle::fiber_bundles_namespace.
Definition at line 1040 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), contains_path(), sheaf::poset_state_handle::in_jim_edit_mode(), sheaf::poset_component::index(), sheaf::is_valid(), sheaf::poset_state_handle::member_id(), sheaf::poset_state_handle::new_link(), sheaf::poset_state_handle::new_member(), sheaf::scoped_index::pod(), sheaf::namespace_poset_member::poset_prereq_id(), and sheaf::poset_state_handle::put_member_name().
Referenced by insert_poset().
P& sheaf::namespace_poset::member_poset | ( | pod_index_type | xhub_id, |
bool | xauto_access | ||
) | const |
Definition at line 68 of file namespace_poset.impl.h.
References sheaf::poset_state_handle::contains_member(), get_read_access(), sheaf::poset_state_handle::is_jim(), sheaf::poset_state_handle::member_dof_tuple_id(), member_poset(), sheaf::namespace_poset_dof_map::poset_pointer(), release_access(), row_dof_map(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
P& sheaf::namespace_poset::member_poset | ( | const scoped_index & | xid, |
bool | xauto_access | ||
) | const |
Definition at line 100 of file namespace_poset.impl.h.
References sheaf::poset_state_handle::contains_member(), get_read_access(), sheaf::scoped_index::hub_pod(), sheaf::poset_state_handle::is_jim(), member_poset(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
P& sheaf::namespace_poset::member_poset | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
Definition at line 129 of file namespace_poset.impl.h.
References contains_poset(), and member_poset().
sheaf::poset_state_handle & sheaf::namespace_poset::member_poset | ( | pod_index_type | xhub_id, |
bool | xauto_access = true |
||
) | const |
The poset_state_handle object referred to by hub id xhub_id.
Definition at line 601 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), get_read_access(), sheaf::poset_state_handle::is_jim(), sheaf::poset_state_handle::member_dof_tuple_id(), sheaf::namespace_poset_dof_map::poset_pointer(), release_access(), row_dof_map(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by fiber_bundle::sec_rep_descriptor_poset::attach_handle_data_members(), fiber_bundle::section_space_schema_poset::attach_handle_data_members(), sheaf::abstract_poset_member::attach_to_state(), fiber_bundle::base_space_member::base_space_member(), sheaf::storage_agent::begin_read_transaction(), fiber_bundle::unstructured_block_builder::build_block_decomposition(), sheaf::storage_agent::clear_all_id_spaces(), sheaf::poset_path::conforms_to(), sheaf::schema_poset_member::conforms_to(), contains_path(), contains_poset(), contains_poset_member(), contains_poset_members(), contains_poset_subposet(), sheaf::poset_scaffold::convert_member_id_to_record_id(), sheaf::poset_scaffold::convert_record_id_to_member_id(), sheaf::poset_scaffold::convert_record_id_to_subposet_id(), sheaf::poset_scaffold::convert_subposet_id_to_record_id(), fiber_bundle::atp_space::d(), fiber_bundle::stp_space::d(), fiber_bundle::gln_space::d(), fiber_bundle::tp_space::d(), fiber_bundle::jcb_space::d(), fiber_bundle::vd_space::d(), fiber_bundle::sec_vd_space::d(), sheaf::deep_size(), delete_poset(), sheaf::schema_poset_member::dof_ct(), fiber_bundle::sec_tuple_space::fiber_schema_conforms(), fiber_bundle::section_space_schema_member::fiber_schema_conforms_to(), fiber_bundle::sec_tuple_space::fiber_space_conforms(), fields::field_at0::field_at0(), fields::field_at1::field_at1(), fields::field_at2::field_at2(), fields::field_at2_e2::field_at2_e2(), fields::field_at2_e3::field_at2_e3(), fields::field_at3::field_at3(), fields::field_at3_e3::field_at3_e3(), fields::field_atp::field_atp(), fields::field_e1::field_e1(), fields::field_e1_uniform::field_e1_uniform(), fields::field_e2::field_e2(), fields::field_e2_uniform::field_e2_uniform(), fields::field_e3::field_e3(), fields::field_e3_uniform::field_e3_uniform(), fields::field_e4::field_e4(), fields::field_ed::field_ed(), fields::field_jcb::field_jcb(), fields::field_jcb_e13::field_jcb_e13(), fields::field_jcb_e23::field_jcb_e23(), fields::field_jcb_e33::field_jcb_e33(), fields::field_jcb_ed::field_jcb_ed(), fields::field_met::field_met(), fields::field_met_e1::field_met_e1(), fields::field_met_e2::field_met_e2(), fields::field_met_e3::field_met_e3(), fields::field_met_ed::field_met_ed(), fields::field_st2::field_st2(), fields::field_st2_e2::field_st2_e2(), fields::field_st2_e3::field_st2_e3(), fields::field_st3::field_st3(), fields::field_st3_e3::field_st3_e3(), fields::field_st4::field_st4(), fields::field_st4_e2::field_st4_e2(), fields::field_st4_e3::field_st4_e3(), fields::field_stp::field_stp(), fields::field_t2::field_t2(), fields::field_t2_e2::field_t2_e2(), fields::field_t2_e3::field_t2_e3(), fields::field_t3::field_t3(), fields::field_t3_e3::field_t3_e3(), fields::field_t4::field_t4(), fields::field_t4_e2::field_t4_e2(), fields::field_t4_e3::field_t4_e3(), fields::field_tp::field_tp(), fields::field_vd::field_vd(), fiber_bundle::uniform_eval_family::initialize(), fiber_bundle::dlinear_eval_family::initialize(), fiber_bundle::constant_eval_family::initialize(), fields::field_refiner_family::initialize(), fiber_bundle::sec_rep_descriptor_poset::initialize_handle_data_members(), fiber_bundle::section_space_schema_poset::initialize_handle_data_members(), fiber_bundle::section_space_schema_poset::initialize_table_dof_subposet(), insert_poset(), fields::make_base_space(), fiber_bundle::fiber_bundles_namespace::make_base_space_schema_members(), sheaf::schema_poset_member::make_schema(), fiber_bundle::fiber_bundles_namespace::make_sec_rep_descriptor_schema_members(), fiber_bundle::fiber_bundles_namespace::make_section_space_schema_schema_members(), fiber_bundle::binary_section_space_schema_member::make_standard_schema(), fiber_bundle::sec_rep_descriptor::make_standard_schema(), fiber_bundle::section_space_schema_member::make_standard_schema(), fiber_bundle::section_space_schema_poset::make_standard_schema(), fiber_bundle::product_section_space_schema_poset::make_standard_schema(), fiber_bundle::tuple::make_standard_schema(), member_poset(), fields::field_factory::new_0d_point_base_space(), fiber_bundle::e1::new_atp(), fiber_bundle::e2::new_atp(), fiber_bundle::e4::new_atp(), fiber_bundle::e3::new_atp(), fields::field_factory_2< coord_type, prop_type, base_type >::new_field(), fiber_bundle::sec_jcb_ed::new_host(), fiber_bundle::sec_stp::new_host(), fiber_bundle::sec_atp::new_host(), fiber_bundle::sec_at2_e2::new_host(), fiber_bundle::sec_met_e1::new_host(), fiber_bundle::sec_met_e2::new_host(), fiber_bundle::sec_st2_e3::new_host(), fiber_bundle::sec_st3_e3::new_host(), fiber_bundle::sec_st4_e2::new_host(), fiber_bundle::sec_st4_e3::new_host(), fiber_bundle::sec_t2_e2::new_host(), fiber_bundle::sec_at2_e3::new_host(), fiber_bundle::sec_at3_e3::new_host(), fiber_bundle::sec_met_e3::new_host(), fiber_bundle::sec_st2_e2::new_host(), fiber_bundle::sec_t2_e3::new_host(), fiber_bundle::sec_t3_e3::new_host(), fiber_bundle::sec_t4_e2::new_host(), fiber_bundle::sec_t4_e3::new_host(), fiber_bundle::sec_jcb_e13::new_host(), fiber_bundle::sec_jcb_e33::new_host(), fiber_bundle::sec_jcb_e23::new_host(), fiber_bundle::sec_tp::new_host(), fiber_bundle::sec_jcb::new_host(), fiber_bundle::jcb_ed::new_host(), fiber_bundle::atp::new_host(), fiber_bundle::stp::new_host(), fiber_bundle::t3::new_host(), fiber_bundle::t4::new_host(), fiber_bundle::t2::new_host(), fiber_bundle::jcb::new_host(), fiber_bundle::tp::new_host(), fiber_bundle::gln::new_host(), fiber_bundle::st3_e3::new_host(), fiber_bundle::at3_e3::new_host(), fiber_bundle::st4_e2::new_host(), fiber_bundle::t4_e2::new_host(), fiber_bundle::st4_e3::new_host(), fiber_bundle::met_e1::new_host(), fiber_bundle::t3_e3::new_host(), fiber_bundle::at2_e2::new_host(), fiber_bundle::jcb_e23::new_host(), fiber_bundle::at2_e3::new_host(), fiber_bundle::st2_e2::new_host(), fiber_bundle::jcb_e13::new_host(), fiber_bundle::st2_e3::new_host(), fiber_bundle::jcb_e33::new_host(), fiber_bundle::t4_e3::new_host(), fiber_bundle::t2_e2::new_host(), fiber_bundle::met_e2::new_host(), fiber_bundle::gl2::new_host(), fiber_bundle::t2_e3::new_host(), fiber_bundle::met_e3::new_host(), fiber_bundle::gl3::new_host(), sheaf::schema_poset_member::new_jim_state(), fiber_bundle::homogeneous_block::new_row_dof_map(), fiber_bundle::point_block_1d::new_row_dof_map(), fiber_bundle::point_block_2d::new_row_dof_map(), fiber_bundle::point_block_3d::new_row_dof_map(), fiber_bundle::base_space_member::new_row_dof_map(), fiber_bundle::base_space_factory< base_type >::new_space(), fiber_bundle::structured_block_1d::new_state(), fiber_bundle::point_block_2d::new_state(), fiber_bundle::point_block_1d::new_state(), fiber_bundle::point_block_3d::new_state(), fiber_bundle::structured_block_2d::new_state(), fiber_bundle::structured_block_3d::new_state(), fiber_bundle::zone_nodes_block::new_state(), fiber_bundle::e2::new_stp(), fiber_bundle::e3::new_stp(), fiber_bundle::sec_atp_space::new_table(), fiber_bundle::sec_stp_space::new_table(), fiber_bundle::atp_space::new_table(), fiber_bundle::stp_space::new_table(), fiber_bundle::sec_tp_space::new_table(), fiber_bundle::tp_space::new_table(), fiber_bundle::gln_space::new_table(), fiber_bundle::jcb_space::new_table(), fiber_bundle::sec_jcb_space::new_table(), fiber_bundle::e1::new_tp(), fiber_bundle::e2::new_tp(), fiber_bundle::e4::new_tp(), fiber_bundle::e3::new_tp(), sheaf::operator<<(), path_is_auto_read_accessible(), path_is_auto_read_available(), path_is_auto_read_write_accessible(), path_is_auto_read_write_available(), poset_state_is_read_accessible(), poset_state_is_read_write_accessible(), fiber_bundle::print_prereq_paths(), fiber_bundle::unstructured_block_builder::put_name_mode(), sheaf::storage_agent::read_remainder(), fiber_bundle::section_space_schema_poset::rep_is_valid(), fiber_bundle::sec_vd_space::same_scalar_fiber_space(), fiber_bundle::sec_tp_space::same_vector_fiber_space(), fiber_bundle::sec_jcb_space::same_vector_fiber_space(), fiber_bundle::vd_space::scalar_space_path(), fiber_bundle::sec_vd_space::scalar_space_path(), fiber_bundle::sec_e1_uniform::standard_host(), fiber_bundle::sec_e2_uniform::standard_host(), fiber_bundle::sec_e3_uniform::standard_host(), fiber_bundle::point_block_2d::standard_host(), fiber_bundle::unstructured_block::standard_host(), fiber_bundle::point_block_3d::standard_host(), fiber_bundle::point_block_1d::standard_host(), fiber_bundle::zone_nodes_block::standard_host(), fiber_bundle::structured_block_3d::standard_host(), fiber_bundle::structured_block_2d::standard_host(), fiber_bundle::structured_block_1d::standard_host(), fiber_bundle::sec_st4_e3::standard_host(), fiber_bundle::sec_t2_e2::standard_host(), fiber_bundle::sec_met_e1::standard_host(), fiber_bundle::sec_st4_e2::standard_host(), fiber_bundle::sec_e3::standard_host(), fiber_bundle::sec_e1::standard_host(), fiber_bundle::sec_at2_e2::standard_host(), fiber_bundle::sec_e4::standard_host(), fiber_bundle::sec_st2_e3::standard_host(), fiber_bundle::sec_met_e2::standard_host(), fiber_bundle::sec_st3_e3::standard_host(), fiber_bundle::sec_e2::standard_host(), fiber_bundle::sec_t3_e3::standard_host(), fiber_bundle::sec_at3_e3::standard_host(), fiber_bundle::sec_t2_e3::standard_host(), fiber_bundle::sec_met_e3::standard_host(), fiber_bundle::sec_t4_e2::standard_host(), fiber_bundle::sec_t4_e3::standard_host(), fiber_bundle::sec_at2_e3::standard_host(), fiber_bundle::sec_st2_e2::standard_host(), fiber_bundle::sec_at0::standard_host(), fiber_bundle::sec_jcb_e33::standard_host(), fiber_bundle::sec_jcb_e13::standard_host(), fiber_bundle::sec_jcb_e23::standard_host(), sheaf::schema_poset_member::standard_host(), fiber_bundle::sec_rep_descriptor::standard_host(), fiber_bundle::binary_section_space_schema_member::standard_host(), fiber_bundle::base_space_member::standard_host(), fiber_bundle::st3_e3::standard_host(), fiber_bundle::at3_e3::standard_host(), fiber_bundle::st4_e2::standard_host(), fiber_bundle::t4_e2::standard_host(), fiber_bundle::st4_e3::standard_host(), fiber_bundle::met_e1::standard_host(), fiber_bundle::e1::standard_host(), fiber_bundle::t3_e3::standard_host(), fiber_bundle::e2::standard_host(), fiber_bundle::e4::standard_host(), fiber_bundle::at2_e2::standard_host(), fiber_bundle::jcb_e23::standard_host(), fiber_bundle::at2_e3::standard_host(), fiber_bundle::at0::standard_host(), fiber_bundle::st2_e2::standard_host(), fiber_bundle::st2_e3::standard_host(), fiber_bundle::jcb_e13::standard_host(), fiber_bundle::jcb_e33::standard_host(), fiber_bundle::t4_e3::standard_host(), fiber_bundle::t2_e2::standard_host(), fiber_bundle::met_e2::standard_host(), fiber_bundle::gl2::standard_host(), fiber_bundle::t2_e3::standard_host(), fiber_bundle::met_e3::standard_host(), fiber_bundle::e3::standard_host(), fiber_bundle::gl3::standard_host(), sheaf::poset_general_record::transfer_internal_buffer_to_poset(), and sheaf::storage_agent::write_remainder().
sheaf::poset_state_handle & sheaf::namespace_poset::member_poset | ( | const scoped_index & | xid, |
bool | xauto_access = true |
||
) | const |
The poset_state_handle object referred to by id xid.
Definition at line 632 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), get_read_access(), sheaf::scoped_index::hub_pod(), sheaf::poset_state_handle::is_jim(), member_poset(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
SHEAF_DLL_SPEC P& sheaf::namespace_poset::member_poset | ( | pod_index_type | xhub_id, |
bool | xauto_access = true |
||
) | const |
The poset_state_handle object referred to by hub id xhub_id, dynamically cast to type P*.
SHEAF_DLL_SPEC P& sheaf::namespace_poset::member_poset | ( | const scoped_index & | xid, |
bool | xauto_access = true |
||
) | const |
The poset_state_handle object referred to by id xid, dynamically cast to type P*.
sheaf::poset_state_handle & sheaf::namespace_poset::member_poset | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
The poset_state_handle object referred to by name xpath.poset_name().
Definition at line 660 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_member(), get_read_access(), sheaf::poset_state_handle::is_jim(), sheaf::poset_state_handle::member_id(), member_poset(), member_poset_schema_id(), sheaf::poset_path::poset_name(), release_access(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
SHEAF_DLL_SPEC P& sheaf::namespace_poset::member_poset | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
The poset_state_handle object referred to by name xpath.poset_name(), dynamically cast to type P*.
sheaf::pod_index_type sheaf::namespace_poset::member_poset_schema_id | ( | const scoped_index & | xindex, |
bool | xauto_access | ||
) | const |
The index of the schema of the member poset with index xindex.
Definition at line 692 of file namespace_poset.cc.
References contains_poset(), delete_poset(), sheaf::poset_component::detach_from_state(), get_read_access(), sheaf::poset_state_handle::is_attached(), sheaf::namespace_poset_member::poset_prereq_id(), release_access(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by member_poset().
|
virtual |
The name of this poset.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1925 of file namespace_poset.cc.
References sheaf::poset_state_handle::name(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by attach_handle_data_members(), sheaf::storage_agent::begin_read_transaction(), fiber_bundle::product_section_space_schema_poset::new_state(), new_state(), sheaf::operator<<(), put_name(), and sheaf::sheaves_namespace::sheaves_namespace().
|
virtual |
The name of this poset.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1950 of file namespace_poset.cc.
References sheaf::poset_state_handle::name(), path(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
|
inline |
The namespace poset schema within this namespace (mutable version)
Definition at line 667 of file namespace_poset.h.
Referenced by attach_handle_data_members(), clear(), detach_from_state(), and sheaf::storage_agent::initialize_namespace_id_spaces_for_read().
|
inline |
The namespace poset schema within this namespace (const version)
Definition at line 675 of file namespace_poset.h.
|
virtual |
Creates a new row dof map appropriate for jims of this.
Reimplemented from sheaf::poset_state_handle.
Definition at line 2090 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_row_dof_tuple(), sheaf::poset_dof_map::index(), sheaf::poset_table_state::put_row_dof_tuple(), sheaf::poset_state_handle::row_dof_tuple_ct(), sheaf::read_write_monitor_handle::state_is_read_write_accessible(), sheaf::poset_state_handle::table(), and top().
Referenced by row_dof_map().
|
protected |
Creates a new namespace state with name xname and attaches this to it.
Definition at line 1746 of file namespace_poset.cc.
References _namespace_schema, sheaf::poset_state_handle::_state, attach_handle_data_members(), current_namespace(), detach_from_state(), sheaf::any::disable_invariant_check(), sheaf::any::enable_invariant_check(), sheaf::primitives_poset_schema::get_read_access(), sheaf::poset_state_handle::get_read_access(), get_read_write_access(), sheaf::poset_state_handle::has_standard_subposet_ct(), sheaf::poset_state_handle::in_jim_edit_mode(), sheaf::poset_state_handle::index(), initialize_additional_members(), initialize_namespace(), initialize_standard_members(), sheaf::poset_state_handle::initialize_standard_subposets(), sheaf::poset_state_handle::initialize_table_dofs(), invariant(), sheaf::poset_path::is_valid_name(), sheaf::poset_state_handle::member_hub_id_space(), name(), put_current_namespace(), release_access(), sheaf::read_write_monitor_handle::state_is_not_read_accessible(), sheaf::poset_state_handle::top(), sheaf::poset_state_handle::update_standard_member_id_spaces(), and virtual_initialize_prototypes().
Referenced by fiber_bundle::binary_section_space_schema_poset::binary_section_space_schema_poset(), detach_from_state(), namespace_poset(), and sheaf::sheaves_namespace::sheaves_namespace().
|
inlineprotected |
Assignment operator; disabled.
Definition at line 111 of file namespace_poset.h.
|
inlineprotected |
Assignment operator; disabled.
Definition at line 119 of file namespace_poset.h.
bool sheaf::namespace_poset::owns | ( | const poset_state_handle & | xposet, |
bool | xauto_access | ||
) | const |
True if and only if this contains the poset xposet. synonym for contains_poset(xposet.poset_path(true), xauto_access)
Definition at line 404 of file namespace_poset.cc.
References contains_poset(), contains_poset_member(), sheaf::poset_state_handle::path(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by contains_poset(), fiber_bundle::sec_e1_uniform::new_host(), fiber_bundle::sec_e2_uniform::new_host(), fiber_bundle::structured_block::new_host(), fiber_bundle::sec_e3_uniform::new_host(), fiber_bundle::homogeneous_block::new_host(), fiber_bundle::unstructured_block::new_host(), fiber_bundle::sec_met::new_host(), fiber_bundle::sec_met_ed::new_host(), fiber_bundle::sec_at3::new_host(), fiber_bundle::sec_t2::new_host(), fiber_bundle::sec_t3::new_host(), fiber_bundle::sec_t4::new_host(), fiber_bundle::sec_at2::new_host(), fiber_bundle::zone_nodes_block::new_host(), fiber_bundle::sec_jcb_ed::new_host(), fiber_bundle::point_block_2d::new_host(), fiber_bundle::sec_st2::new_host(), fiber_bundle::point_block_3d::new_host(), fiber_bundle::sec_st3::new_host(), fiber_bundle::sec_st4::new_host(), fiber_bundle::sec_ed::new_host(), fiber_bundle::point_block_1d::new_host(), fiber_bundle::structured_block_3d::new_host(), fiber_bundle::structured_block_2d::new_host(), fiber_bundle::structured_block_1d::new_host(), fiber_bundle::sec_stp::new_host(), fiber_bundle::sec_at1::new_host(), fiber_bundle::sec_atp::new_host(), fiber_bundle::sec_st4_e3::new_host(), fiber_bundle::sec_t2_e2::new_host(), fiber_bundle::sec_at2_e2::new_host(), fiber_bundle::sec_e1::new_host(), fiber_bundle::sec_e3::new_host(), fiber_bundle::sec_e4::new_host(), fiber_bundle::sec_met_e1::new_host(), fiber_bundle::sec_met_e2::new_host(), fiber_bundle::sec_st2_e3::new_host(), fiber_bundle::sec_st3_e3::new_host(), fiber_bundle::sec_st4_e2::new_host(), fiber_bundle::sec_t2_e3::new_host(), fiber_bundle::sec_t3_e3::new_host(), fiber_bundle::sec_t4_e2::new_host(), fiber_bundle::sec_t4_e3::new_host(), fiber_bundle::sec_at2_e3::new_host(), fiber_bundle::sec_at3_e3::new_host(), fiber_bundle::sec_e2::new_host(), fiber_bundle::sec_met_e3::new_host(), fiber_bundle::sec_st2_e2::new_host(), fiber_bundle::sec_at0::new_host(), fiber_bundle::sec_jcb_e13::new_host(), fiber_bundle::sec_jcb_e33::new_host(), fiber_bundle::sec_tp::new_host(), fiber_bundle::sec_jcb_e23::new_host(), fiber_bundle::sec_jcb::new_host(), fiber_bundle::binary_section_space_schema_member::new_host(), fiber_bundle::sec_rep_descriptor::new_host(), sheaf::schema_poset_member::new_host(), fiber_bundle::sec_vd::new_host(), fiber_bundle::sec_tuple::new_host(), fiber_bundle::base_space_member::new_host(), sheaf::abstract_poset_member::new_host(), fiber_bundle::jcb_ed::new_host(), fiber_bundle::stp::new_host(), fiber_bundle::atp::new_host(), fiber_bundle::ed::new_host(), fiber_bundle::met::new_host(), fiber_bundle::at1::new_host(), fiber_bundle::met_ed::new_host(), fiber_bundle::t3::new_host(), fiber_bundle::t4::new_host(), fiber_bundle::t2::new_host(), fiber_bundle::at3::new_host(), fiber_bundle::st3::new_host(), fiber_bundle::st4::new_host(), fiber_bundle::tuple::new_host(), fiber_bundle::st2::new_host(), fiber_bundle::at2::new_host(), fiber_bundle::jcb::new_host(), fiber_bundle::tp::new_host(), fiber_bundle::gln::new_host(), fiber_bundle::vd::new_host(), fiber_bundle::st3_e3::new_host(), fiber_bundle::at3_e3::new_host(), fiber_bundle::st4_e2::new_host(), fiber_bundle::t4_e2::new_host(), fiber_bundle::st4_e3::new_host(), fiber_bundle::met_e1::new_host(), fiber_bundle::e1::new_host(), fiber_bundle::t3_e3::new_host(), fiber_bundle::e2::new_host(), fiber_bundle::e4::new_host(), fiber_bundle::at2_e2::new_host(), fiber_bundle::jcb_e23::new_host(), fiber_bundle::at2_e3::new_host(), fiber_bundle::at0::new_host(), fiber_bundle::st2_e2::new_host(), fiber_bundle::jcb_e13::new_host(), fiber_bundle::st2_e3::new_host(), fiber_bundle::jcb_e33::new_host(), fiber_bundle::t4_e3::new_host(), fiber_bundle::t2_e2::new_host(), fiber_bundle::met_e2::new_host(), fiber_bundle::gl2::new_host(), fiber_bundle::t2_e3::new_host(), fiber_bundle::met_e3::new_host(), fiber_bundle::e3::new_host(), fiber_bundle::gl3::new_host(), sheaf::refinable_poset::new_table(), sheaf::poset::new_table(), fiber_bundle::sec_atp_space::new_table(), fiber_bundle::at0_space::new_table(), fiber_bundle::sec_at1_space::new_table(), fiber_bundle::at1_space::new_table(), fiber_bundle::sec_stp_space::new_table(), fiber_bundle::sec_at0_space::new_table(), fiber_bundle::binary_section_space_schema_poset::new_table(), fiber_bundle::atp_space::new_table(), fiber_bundle::stp_space::new_table(), fiber_bundle::sec_rep_descriptor_poset::new_table(), fiber_bundle::vd_space::new_table(), fiber_bundle::tuple_space::new_table(), fiber_bundle::sec_vd_space::new_table(), fiber_bundle::sec_tp_space::new_table(), fiber_bundle::tp_space::new_table(), fiber_bundle::gln_space::new_table(), fiber_bundle::sec_tuple_space::new_table(), fiber_bundle::sec_jcb_space::new_table(), fiber_bundle::jcb_space::new_table(), fiber_bundle::base_space_poset::new_table(), fiber_bundle::sec_e3_uniform::standard_host(), fiber_bundle::sec_e1_uniform::standard_host(), fiber_bundle::sec_e2_uniform::standard_host(), fiber_bundle::point_block_3d::standard_host(), fiber_bundle::unstructured_block::standard_host(), fiber_bundle::point_block_2d::standard_host(), fiber_bundle::zone_nodes_block::standard_host(), fiber_bundle::point_block_1d::standard_host(), fiber_bundle::structured_block_3d::standard_host(), fiber_bundle::structured_block_2d::standard_host(), fiber_bundle::structured_block_1d::standard_host(), fiber_bundle::sec_t2_e2::standard_host(), fiber_bundle::sec_e4::standard_host(), fiber_bundle::sec_e3::standard_host(), fiber_bundle::sec_st4_e2::standard_host(), fiber_bundle::sec_met_e2::standard_host(), fiber_bundle::sec_st4_e3::standard_host(), fiber_bundle::sec_e1::standard_host(), fiber_bundle::sec_st3_e3::standard_host(), fiber_bundle::sec_at2_e2::standard_host(), fiber_bundle::sec_met_e1::standard_host(), fiber_bundle::sec_st2_e3::standard_host(), fiber_bundle::sec_t2_e3::standard_host(), fiber_bundle::sec_at2_e3::standard_host(), fiber_bundle::sec_at3_e3::standard_host(), fiber_bundle::sec_t4_e3::standard_host(), fiber_bundle::sec_st2_e2::standard_host(), fiber_bundle::sec_t3_e3::standard_host(), fiber_bundle::sec_e2::standard_host(), fiber_bundle::sec_met_e3::standard_host(), fiber_bundle::sec_t4_e2::standard_host(), fiber_bundle::sec_at0::standard_host(), fiber_bundle::sec_jcb_e33::standard_host(), fiber_bundle::sec_jcb_e13::standard_host(), fiber_bundle::sec_jcb_e23::standard_host(), sheaf::schema_poset_member::standard_host(), fiber_bundle::sec_rep_descriptor::standard_host(), fiber_bundle::binary_section_space_schema_member::standard_host(), fiber_bundle::base_space_member::standard_host(), fiber_bundle::st3_e3::standard_host(), fiber_bundle::at3_e3::standard_host(), fiber_bundle::st4_e2::standard_host(), fiber_bundle::t4_e2::standard_host(), fiber_bundle::st4_e3::standard_host(), fiber_bundle::met_e1::standard_host(), fiber_bundle::e1::standard_host(), fiber_bundle::t3_e3::standard_host(), fiber_bundle::e2::standard_host(), fiber_bundle::e4::standard_host(), fiber_bundle::at2_e2::standard_host(), fiber_bundle::jcb_e23::standard_host(), fiber_bundle::at2_e3::standard_host(), fiber_bundle::at0::standard_host(), fiber_bundle::st2_e2::standard_host(), fiber_bundle::st2_e3::standard_host(), fiber_bundle::jcb_e13::standard_host(), fiber_bundle::jcb_e33::standard_host(), fiber_bundle::t4_e3::standard_host(), fiber_bundle::t2_e2::standard_host(), fiber_bundle::met_e2::standard_host(), fiber_bundle::gl2::standard_host(), fiber_bundle::t2_e3::standard_host(), fiber_bundle::met_e3::standard_host(), fiber_bundle::e3::standard_host(), and fiber_bundle::gl3::standard_host().
|
virtual |
The path of this poset.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1975 of file namespace_poset.cc.
References sheaf::poset_path::empty(), sheaf::poset_path::full(), initialize_namespace(), sheaf::poset_state_handle::path(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by name(), fields::field_factory_2< coord_type, prop_type, base_type >::new_field(), and fields::field_factory_2< coord_type, prop_type, base_type >::standard_field().
bool sheaf::namespace_poset::path_is_auto_read_accessible | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath exists and is auto read accessible.
Definition at line 1127 of file namespace_poset.cc.
References contains_path(), member_poset(), path_is_auto_read_write_accessible(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by contains_path(), fiber_bundle::stp_space::d(), fiber_bundle::atp_space::d(), fiber_bundle::tp_space::d(), fiber_bundle::gln_space::d(), fiber_bundle::jcb_space::d(), fiber_bundle::sec_tuple_space::fiber_schema_conforms(), fiber_bundle::sec_tuple_space::fiber_space_conforms(), fiber_bundle::product_section_space_schema_poset::initialize_arg_list(), fiber_bundle::homogeneous_block::new_host(), fiber_bundle::sec_e1_uniform::new_host(), fiber_bundle::structured_block::new_host(), fiber_bundle::sec_e2_uniform::new_host(), fiber_bundle::sec_e3_uniform::new_host(), fiber_bundle::unstructured_block::new_host(), fiber_bundle::sec_met::new_host(), fiber_bundle::sec_met_ed::new_host(), fiber_bundle::point_block_2d::new_host(), fiber_bundle::sec_st3::new_host(), fiber_bundle::sec_st4::new_host(), fiber_bundle::point_block_3d::new_host(), fiber_bundle::sec_t2::new_host(), fiber_bundle::sec_t3::new_host(), fiber_bundle::sec_t4::new_host(), fiber_bundle::sec_at2::new_host(), fiber_bundle::sec_at3::new_host(), fiber_bundle::sec_jcb_ed::new_host(), fiber_bundle::zone_nodes_block::new_host(), fiber_bundle::sec_st2::new_host(), fiber_bundle::sec_ed::new_host(), fiber_bundle::point_block_1d::new_host(), fiber_bundle::structured_block_3d::new_host(), fiber_bundle::structured_block_2d::new_host(), fiber_bundle::structured_block_1d::new_host(), fiber_bundle::sec_stp::new_host(), fiber_bundle::sec_at1::new_host(), fiber_bundle::sec_atp::new_host(), fiber_bundle::sec_st2_e3::new_host(), fiber_bundle::sec_st3_e3::new_host(), fiber_bundle::sec_st4_e2::new_host(), fiber_bundle::sec_st4_e3::new_host(), fiber_bundle::sec_t2_e2::new_host(), fiber_bundle::sec_at2_e2::new_host(), fiber_bundle::sec_e1::new_host(), fiber_bundle::sec_e3::new_host(), fiber_bundle::sec_e4::new_host(), fiber_bundle::sec_met_e1::new_host(), fiber_bundle::sec_met_e2::new_host(), fiber_bundle::sec_t2_e3::new_host(), fiber_bundle::sec_t3_e3::new_host(), fiber_bundle::sec_t4_e2::new_host(), fiber_bundle::sec_t4_e3::new_host(), fiber_bundle::sec_at2_e3::new_host(), fiber_bundle::sec_at3_e3::new_host(), fiber_bundle::sec_e2::new_host(), fiber_bundle::sec_met_e3::new_host(), fiber_bundle::sec_st2_e2::new_host(), fiber_bundle::sec_at0::new_host(), fiber_bundle::sec_jcb_e13::new_host(), fiber_bundle::sec_jcb_e33::new_host(), fiber_bundle::sec_tp::new_host(), fiber_bundle::sec_jcb_e23::new_host(), fiber_bundle::sec_jcb::new_host(), fiber_bundle::binary_section_space_schema_member::new_host(), fiber_bundle::sec_rep_descriptor::new_host(), sheaf::schema_poset_member::new_host(), fiber_bundle::sec_vd::new_host(), fiber_bundle::sec_tuple::new_host(), fiber_bundle::base_space_member::new_host(), sheaf::abstract_poset_member::new_host(), fiber_bundle::jcb_ed::new_host(), fiber_bundle::stp::new_host(), fiber_bundle::atp::new_host(), fiber_bundle::ed::new_host(), fiber_bundle::met::new_host(), fiber_bundle::at1::new_host(), fiber_bundle::met_ed::new_host(), fiber_bundle::t3::new_host(), fiber_bundle::t4::new_host(), fiber_bundle::t2::new_host(), fiber_bundle::at3::new_host(), fiber_bundle::st3::new_host(), fiber_bundle::st4::new_host(), fiber_bundle::tuple::new_host(), fiber_bundle::st2::new_host(), fiber_bundle::at2::new_host(), fiber_bundle::jcb::new_host(), fiber_bundle::tp::new_host(), fiber_bundle::gln::new_host(), fiber_bundle::vd::new_host(), fiber_bundle::st3_e3::new_host(), fiber_bundle::at3_e3::new_host(), fiber_bundle::st4_e2::new_host(), fiber_bundle::t4_e2::new_host(), fiber_bundle::st4_e3::new_host(), fiber_bundle::met_e1::new_host(), fiber_bundle::e1::new_host(), fiber_bundle::t3_e3::new_host(), fiber_bundle::e2::new_host(), fiber_bundle::e4::new_host(), fiber_bundle::at2_e2::new_host(), fiber_bundle::jcb_e23::new_host(), fiber_bundle::at2_e3::new_host(), fiber_bundle::at0::new_host(), fiber_bundle::st2_e2::new_host(), fiber_bundle::jcb_e13::new_host(), fiber_bundle::st2_e3::new_host(), fiber_bundle::jcb_e33::new_host(), fiber_bundle::t4_e3::new_host(), fiber_bundle::t2_e2::new_host(), fiber_bundle::met_e2::new_host(), fiber_bundle::gl2::new_host(), fiber_bundle::t2_e3::new_host(), fiber_bundle::met_e3::new_host(), fiber_bundle::e3::new_host(), fiber_bundle::gl3::new_host(), fiber_bundle::product_section_space_schema_poset::new_state(), sheaf::refinable_poset::new_table(), sheaf::poset::new_table(), fiber_bundle::sec_atp_space::new_table(), fiber_bundle::at0_space::new_table(), fiber_bundle::sec_at1_space::new_table(), fiber_bundle::at1_space::new_table(), fiber_bundle::sec_stp_space::new_table(), fiber_bundle::sec_at0_space::new_table(), fiber_bundle::binary_section_space_schema_poset::new_table(), fiber_bundle::atp_space::new_table(), fiber_bundle::stp_space::new_table(), fiber_bundle::sec_rep_descriptor_poset::new_table(), fiber_bundle::vd_space::new_table(), fiber_bundle::tuple_space::new_table(), fiber_bundle::sec_vd_space::new_table(), fiber_bundle::sec_tp_space::new_table(), fiber_bundle::tp_space::new_table(), fiber_bundle::gln_space::new_table(), fiber_bundle::sec_tuple_space::new_table(), fiber_bundle::jcb_space::new_table(), fiber_bundle::sec_jcb_space::new_table(), fiber_bundle::base_space_poset::new_table(), fiber_bundle::sec_vd_space::same_scalar_fiber_space(), fiber_bundle::sec_tp_space::same_vector_fiber_space(), fiber_bundle::sec_jcb_space::same_vector_fiber_space(), fields::field_factory_2< coord_type, prop_type, base_type >::standard_field(), fiber_bundle::sec_e1_uniform::standard_host(), fiber_bundle::sec_e3_uniform::standard_host(), fiber_bundle::sec_e2_uniform::standard_host(), fiber_bundle::point_block_2d::standard_host(), fiber_bundle::point_block_3d::standard_host(), fiber_bundle::unstructured_block::standard_host(), fiber_bundle::zone_nodes_block::standard_host(), fiber_bundle::point_block_1d::standard_host(), fiber_bundle::structured_block_3d::standard_host(), fiber_bundle::structured_block_2d::standard_host(), fiber_bundle::structured_block_1d::standard_host(), fiber_bundle::sec_e3::standard_host(), fiber_bundle::sec_st3_e3::standard_host(), fiber_bundle::sec_at2_e2::standard_host(), fiber_bundle::sec_e4::standard_host(), fiber_bundle::sec_st4_e3::standard_host(), fiber_bundle::sec_st2_e3::standard_host(), fiber_bundle::sec_st4_e2::standard_host(), fiber_bundle::sec_e1::standard_host(), fiber_bundle::sec_t2_e2::standard_host(), fiber_bundle::sec_met_e2::standard_host(), fiber_bundle::sec_met_e1::standard_host(), fiber_bundle::sec_t2_e3::standard_host(), fiber_bundle::sec_t4_e3::standard_host(), fiber_bundle::sec_t4_e2::standard_host(), fiber_bundle::sec_t3_e3::standard_host(), fiber_bundle::sec_at3_e3::standard_host(), fiber_bundle::sec_at2_e3::standard_host(), fiber_bundle::sec_st2_e2::standard_host(), fiber_bundle::sec_met_e3::standard_host(), fiber_bundle::sec_e2::standard_host(), fiber_bundle::sec_at0::standard_host(), fiber_bundle::sec_jcb_e13::standard_host(), fiber_bundle::sec_jcb_e33::standard_host(), fiber_bundle::sec_jcb_e23::standard_host(), sheaf::schema_poset_member::standard_host(), fiber_bundle::sec_rep_descriptor::standard_host(), fiber_bundle::binary_section_space_schema_member::standard_host(), fiber_bundle::base_space_member::standard_host(), fiber_bundle::st3_e3::standard_host(), fiber_bundle::at3_e3::standard_host(), fiber_bundle::st4_e2::standard_host(), fiber_bundle::t4_e2::standard_host(), fiber_bundle::st4_e3::standard_host(), fiber_bundle::met_e1::standard_host(), fiber_bundle::e1::standard_host(), fiber_bundle::t3_e3::standard_host(), fiber_bundle::e2::standard_host(), fiber_bundle::e4::standard_host(), fiber_bundle::at2_e2::standard_host(), fiber_bundle::jcb_e23::standard_host(), fiber_bundle::at2_e3::standard_host(), fiber_bundle::at0::standard_host(), fiber_bundle::st2_e2::standard_host(), fiber_bundle::jcb_e13::standard_host(), fiber_bundle::st2_e3::standard_host(), fiber_bundle::jcb_e33::standard_host(), fiber_bundle::t4_e3::standard_host(), fiber_bundle::t2_e2::standard_host(), fiber_bundle::met_e2::standard_host(), fiber_bundle::gl2::standard_host(), fiber_bundle::t2_e3::standard_host(), fiber_bundle::met_e3::standard_host(), fiber_bundle::e3::standard_host(), fiber_bundle::gl3::standard_host(), and fiber_bundle::binary_section_space_schema_member::standard_host_is_available().
bool sheaf::namespace_poset::path_is_auto_read_accessible | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath exists, is auto read accessible, and conforms to poset type P.
Definition at line 260 of file namespace_poset.impl.h.
References member_poset(), path_is_available(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
bool sheaf::namespace_poset::path_is_auto_read_available | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath does not exist or exists and is auto read accessible.
Definition at line 1174 of file namespace_poset.cc.
References contains_path(), member_poset(), path_is_auto_read_write_available(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by path_is_auto_read_write_accessible(), fiber_bundle::st3_e3::standard_host(), fiber_bundle::at3_e3::standard_host(), fiber_bundle::st4_e2::standard_host(), fiber_bundle::t4_e2::standard_host(), fiber_bundle::st4_e3::standard_host(), fiber_bundle::met_e1::standard_host(), fiber_bundle::e1::standard_host(), fiber_bundle::t3_e3::standard_host(), fiber_bundle::e2::standard_host(), fiber_bundle::e4::standard_host(), fiber_bundle::at2_e2::standard_host(), fiber_bundle::jcb_e23::standard_host(), fiber_bundle::at2_e3::standard_host(), fiber_bundle::st2_e2::standard_host(), fiber_bundle::st2_e3::standard_host(), fiber_bundle::jcb_e13::standard_host(), fiber_bundle::jcb_e33::standard_host(), fiber_bundle::t4_e3::standard_host(), fiber_bundle::t2_e2::standard_host(), fiber_bundle::met_e2::standard_host(), fiber_bundle::gl2::standard_host(), fiber_bundle::t2_e3::standard_host(), fiber_bundle::met_e3::standard_host(), fiber_bundle::e3::standard_host(), and fiber_bundle::gl3::standard_host().
bool sheaf::namespace_poset::path_is_auto_read_available | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath does not exist or exists, conforms to poset type P and is auto read accessible.
Definition at line 330 of file namespace_poset.impl.h.
References contains_path(), member_poset(), path_is_auto_read_write_available(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
bool sheaf::namespace_poset::path_is_auto_read_write_accessible | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath exists and is auto read-write accessible.
Definition at line 1151 of file namespace_poset.cc.
References contains_path(), member_poset(), path_is_auto_read_available(), sheaf::read_write_monitor_handle::state_is_auto_read_accessible(), and sheaf::read_write_monitor_handle::state_is_auto_read_write_accessible().
Referenced by fields::field_factory_2< coord_type, prop_type, base_type >::new_field(), path_is_auto_read_accessible(), and path_is_available().
bool sheaf::namespace_poset::path_is_auto_read_write_accessible | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath exists, is auto read-write accessible, and conforms to poset type P.
Definition at line 306 of file namespace_poset.impl.h.
References member_poset(), path_is_auto_read_available(), sheaf::read_write_monitor_handle::state_is_auto_read_accessible(), and sheaf::read_write_monitor_handle::state_is_auto_read_write_accessible().
bool sheaf::namespace_poset::path_is_auto_read_write_available | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath does not exist or exists and is auto read-write accessible.
Definition at line 1197 of file namespace_poset.cc.
References contains_path(), member_poset(), poset_state_is_read_accessible(), sheaf::read_write_monitor_handle::state_is_auto_read_accessible(), and sheaf::read_write_monitor_handle::state_is_auto_read_write_accessible().
Referenced by path_is_auto_read_available(), fiber_bundle::point_block_2d::standard_host(), fiber_bundle::unstructured_block::standard_host(), fiber_bundle::point_block_3d::standard_host(), fiber_bundle::zone_nodes_block::standard_host(), fiber_bundle::point_block_1d::standard_host(), fiber_bundle::structured_block_3d::standard_host(), fiber_bundle::structured_block_2d::standard_host(), fiber_bundle::structured_block_1d::standard_host(), and fiber_bundle::base_space_member::standard_host().
bool sheaf::namespace_poset::path_is_auto_read_write_available | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath does not exist or exists, conforms to poset type P and is auto read-write accessible.
Definition at line 358 of file namespace_poset.impl.h.
References contains_path(), member_poset(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
bool sheaf::namespace_poset::path_is_available | ( | const poset_path & | xpath, |
bool | xauto_access | ||
) | const |
True if the state referred to xpath does not exist or exists and conforms to poset type P.
Definition at line 284 of file namespace_poset.impl.h.
References contains_path(), path_is_auto_read_write_accessible(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by path_is_auto_read_accessible(), sheaf::schema_poset_member::standard_host(), fiber_bundle::sec_rep_descriptor::standard_host(), fiber_bundle::sec_tuple::standard_host_is_available(), and fiber_bundle::binary_section_space_schema_member::standard_host_is_available().
bool sheaf::namespace_poset::poset_state_is_read_accessible | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
True if the poset referred to by xpath is read accessible.
Definition at line 1220 of file namespace_poset.cc.
References contains_poset(), member_poset(), poset_state_is_read_write_accessible(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by contains_poset_member(), fiber_bundle::structured_block_1d::new_row_dof_map(), fiber_bundle::point_block_1d::new_row_dof_map(), fiber_bundle::structured_block_2d::new_row_dof_map(), fiber_bundle::point_block_2d::new_row_dof_map(), fiber_bundle::structured_block_3d::new_row_dof_map(), fiber_bundle::point_block_3d::new_row_dof_map(), and path_is_auto_read_write_available().
bool sheaf::namespace_poset::poset_state_is_read_write_accessible | ( | const poset_path & | xpath, |
bool | xauto_access = true |
||
) | const |
True if the poset referred to by xpath is read-write accessible.
Definition at line 1243 of file namespace_poset.cc.
References contains_poset(), current_namespace(), member_poset(), sheaf::read_write_monitor_handle::state_is_read_accessible(), and sheaf::read_write_monitor_handle::state_is_read_write_accessible().
Referenced by poset_state_is_read_accessible().
|
virtual |
The id of the xi-th prerequisite poset for this.
Reimplemented from sheaf::poset_state_handle.
Definition at line 2632 of file namespace_poset.cc.
References sheaf::invalid_pod_index(), and put_name().
Referenced by initialize_member_poset_id_space().
|
inline |
The poset of primitives for this namespace (mutable version)
Definition at line 143 of file namespace_poset.h.
Referenced by attach_handle_data_members(), clear(), detach_from_state(), get_read_access(), get_read_write_access(), sheaf::storage_agent::initialize_namespace_id_spaces_for_read(), invariant(), fiber_bundle::fiber_bundles_namespace::make_base_space_schema_poset(), fiber_bundle::fiber_bundles_namespace::make_fiber_space_schema_poset(), fiber_bundle::fiber_bundles_namespace::make_sec_rep_descriptor_schema_poset(), fiber_bundle::fiber_bundles_namespace::make_section_space_schema_schema_poset(), sheaf::sheaves_namespace::make_triangle(), and release_access().
|
inlinevirtual |
The poset of primitives this namespace (const version)
Reimplemented from sheaf::poset_state_handle.
Definition at line 151 of file namespace_poset.h.
|
inline |
The schema poset for the primitives poset (mutable version)
Definition at line 164 of file namespace_poset.h.
Referenced by attach_handle_data_members(), clear(), detach_from_state(), sheaf::storage_agent::initialize_namespace_id_spaces_for_read(), and invariant().
|
inline |
The schema poset for the primitives poset (const version)
Definition at line 172 of file namespace_poset.h.
|
static |
The path for the primitives schema.
Definition at line 292 of file namespace_poset.cc.
References contains_poset(), sheaf::poset_path::full(), and sheaf::primitives_poset_schema::standard_name().
Referenced by namespace_poset().
void sheaf::namespace_poset::put_current_namespace | ( | namespace_poset * | xns | ) |
Sets the current default namespace to xns.
Definition at line 1292 of file namespace_poset.cc.
References current_namespace(), and initialize_prototypes().
Referenced by current_namespace(), and new_state().
|
protected |
Sets name() to xname. Intended for use only by storage_agent::begin_read_transaction(namespace_poset&).
Definition at line 2644 of file namespace_poset.cc.
References sheaf::poset_path::is_valid_name(), name(), sheaf::poset_state::put_name(), sheaf::read_write_monitor_handle::state_is_read_write_accessible(), sheaf::poset_state_handle::state_obj(), and to_stream().
Referenced by sheaf::storage_agent::begin_read_transaction(), and prereq_id().
|
virtual |
Release access. If xall is true, release all levels of access. Otherwise, release one level of access.
Reimplemented from sheaf::poset_state_handle.
Definition at line 1664 of file namespace_poset.cc.
References sheaf::read_write_monitor_handle::access_request_depth(), detach_from_state(), primitives(), sheaf::poset_state_handle::release_access(), sheaf::read_write_monitor_handle::state_is_not_read_accessible(), and sheaf::read_write_monitor_handle::state_is_read_accessible().
Referenced by sheaf::abstract_poset_member::attach_to_state(), fiber_bundle::unstructured_block_builder::build_block_decomposition(), sheaf::schema_poset_member::conforms_to(), contains_poset(), contains_poset_member(), contains_poset_subposet(), sheaf::schema_poset_member::dof_ct(), fiber_bundle::section_space_schema_member::fiber_schema_conforms_to(), fields::field_at0::field_at0(), fields::field_at1::field_at1(), fields::field_at2::field_at2(), fields::field_at2_e2::field_at2_e2(), fields::field_at2_e3::field_at2_e3(), fields::field_at3::field_at3(), fields::field_at3_e3::field_at3_e3(), fields::field_atp::field_atp(), fields::field_e1::field_e1(), fields::field_e1_uniform::field_e1_uniform(), fields::field_e2::field_e2(), fields::field_e2_uniform::field_e2_uniform(), fields::field_e3::field_e3(), fields::field_e3_uniform::field_e3_uniform(), fields::field_e4::field_e4(), fields::field_ed::field_ed(), fields::field_jcb::field_jcb(), fields::field_jcb_e13::field_jcb_e13(), fields::field_jcb_e23::field_jcb_e23(), fields::field_jcb_e33::field_jcb_e33(), fields::field_jcb_ed::field_jcb_ed(), fields::field_met::field_met(), fields::field_met_e1::field_met_e1(), fields::field_met_e2::field_met_e2(), fields::field_met_e3::field_met_e3(), fields::field_met_ed::field_met_ed(), fields::field_st2::field_st2(), fields::field_st2_e2::field_st2_e2(), fields::field_st2_e3::field_st2_e3(), fields::field_st3::field_st3(), fields::field_st3_e3::field_st3_e3(), fields::field_st4::field_st4(), fields::field_st4_e2::field_st4_e2(), fields::field_st4_e3::field_st4_e3(), fields::field_stp::field_stp(), fields::field_t2::field_t2(), fields::field_t2_e2::field_t2_e2(), fields::field_t2_e3::field_t2_e3(), fields::field_t3::field_t3(), fields::field_t3_e3::field_t3_e3(), fields::field_t4::field_t4(), fields::field_t4_e2::field_t4_e2(), fields::field_t4_e3::field_t4_e3(), fields::field_tp::field_tp(), get_member_poset_id_space(), get_member_poset_id_space_iterator(), get_read_write_access(), sheaf::schema_poset_member::make_schema(), member_poset(), member_poset_schema_id(), fields::field_factory_2< coord_type, prop_type, base_type >::new_field(), sheaf::schema_poset_member::new_jim_state(), fiber_bundle::homogeneous_block::new_row_dof_map(), fiber_bundle::point_block_1d::new_row_dof_map(), fiber_bundle::point_block_2d::new_row_dof_map(), fiber_bundle::point_block_3d::new_row_dof_map(), fiber_bundle::base_space_member::new_row_dof_map(), fiber_bundle::point_block_2d::new_state(), fiber_bundle::structured_block_1d::new_state(), fiber_bundle::point_block_1d::new_state(), fiber_bundle::structured_block_2d::new_state(), fiber_bundle::point_block_3d::new_state(), fiber_bundle::structured_block_3d::new_state(), fiber_bundle::zone_nodes_block::new_state(), fiber_bundle::product_section_space_schema_poset::new_state(), fiber_bundle::unstructured_block::new_state(), new_state(), sheaf::operator<<(), release_member_poset_id_space(), release_member_poset_id_space_iterator(), sheaf::sheaves_namespace::sheaves_namespace(), fields::field_factory_2< coord_type, prop_type, base_type >::standard_field(), fiber_bundle::group::standard_host_is_available(), and fiber_bundle::tuple::standard_host_is_available().
void sheaf::namespace_poset::release_member_poset_id_space | ( | index_space_handle & | xid_space, |
bool | xauto_access | ||
) | const |
Returns the handle for the id space for member posets to the pool of id space handles.
Definition at line 2506 of file namespace_poset.cc.
References get_member_poset_id_space_iterator(), get_read_access(), sheaf::poset_state_handle::member_id_spaces(), release_access(), sheaf::index_space_family::release_id_space(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by get_member_poset_id_space(), and insert_poset().
void sheaf::namespace_poset::release_member_poset_id_space_iterator | ( | index_space_iterator & | xid_space, |
bool | xauto_access | ||
) | const |
Returns the iterator for the id space for member posets to the pool of id space iterators.
Definition at line 2569 of file namespace_poset.cc.
References get_read_access(), initialize_member_poset_id_space(), sheaf::poset_state_handle::member_id_spaces(), release_access(), sheaf::index_space_family::release_id_space_iterator(), and sheaf::read_write_monitor_handle::state_is_auto_read_accessible().
Referenced by get_member_poset_id_space_iterator().
|
virtual |
The map from row dof client_ids to row dof values for dof tuple hub id xtuple_hub_id.
Reimplemented from sheaf::poset_state_handle.
Definition at line 2064 of file namespace_poset.cc.
References sheaf::poset_state_handle::contains_row_dof_tuple(), new_row_dof_map(), sheaf::poset_table_state::row_dof_tuple(), sheaf::read_write_monitor_handle::state_is_read_accessible(), sheaf::read_write_monitor_handle::state_is_read_write_accessible(), and sheaf::poset_state_handle::table().
Referenced by member_poset(), row_dof_map_conforms(), and ~namespace_poset().
|
virtual |
True if xdof_map conforms to (is derived from) the type of row dof map required by this poset.
Reimplemented from sheaf::poset_state_handle.
Definition at line 2039 of file namespace_poset.cc.
References row_dof_map().
Referenced by initialize_namespace().
void sheaf::namespace_poset::to_stream | ( | std::ostream & | xos = std::cout | ) |
Write instance information to an ostream (default = stdout).
Definition at line 2679 of file namespace_poset.cc.
References to_string().
Referenced by put_name().
std::string sheaf::namespace_poset::to_string | ( | ) |
Get instance information as a string.
Definition at line 2686 of file namespace_poset.cc.
References is_ancestor_of().
Referenced by to_stream().
sheaf::namespace_poset_member & sheaf::namespace_poset::top | ( | ) |
The top member of the poset (mutable version)
Definition at line 2129 of file namespace_poset.cc.
References sheaf::poset_state_handle::_top.
Referenced by sheaf::storage_agent::begin_read_transaction(), clear(), sheaf::storage_agent::clear_all_id_spaces(), fields::field_vd::delete_field_spaces(), fields::field_factory::delete_field_spaces(), new_row_dof_map(), sheaf::storage_agent::read_remainder(), and sheaf::storage_agent::write_remainder().
const sheaf::namespace_poset_member & sheaf::namespace_poset::top | ( | ) | const |
The top member of the poset (const version)
Definition at line 2146 of file namespace_poset.cc.
References sheaf::poset_state_handle::_top, and bottom().
|
virtual |
Identifier for the type of this poset.
Reimplemented from sheaf::poset_state_handle.
Reimplemented in fiber_bundle::fiber_bundles_namespace, and sheaf::sheaves_namespace.
Definition at line 1532 of file namespace_poset.cc.
References class_name().
Referenced by fiber_bundle::binary_section_space_schema_poset::binary_section_space_schema_poset(), and virtual_initialize_prototypes().
|
protectedvirtual |
Initialize all the prototypes needed by various factory methods; virtual version.
Reimplemented in fiber_bundle::fiber_bundles_namespace.
Definition at line 1500 of file namespace_poset.cc.
References initialize_prototypes(), and type_id().
Referenced by initialize_id_space_prototypes(), and new_state().
|
protected |
The schema poset for this namespace.
Definition at line 703 of file namespace_poset.h.
Referenced by initialize_standard_members(), new_state(), and ~namespace_poset().