edmiRemoteListModels
EdmiError edmiRemoteListModels (SdaiServerContext serverContextId, SdaiString repositoryFilter, SdaiString nameFilter, SdaiString ownerFilter, SdaiString groupOwnerFilter, SdaiString schemaFilter, SdaiOptions options, SdaiString **foundNames, SdaiInvocationId *edmiInvocationId);
Performs a query on the entity extent of the EDM_MODEL entity in the ExpressDataManager model and lists all models that match an Express-X conditional statement. The Express-X conditional statement will be constructed from five user specified filters. The five available filters are;
- The Model Filter.
The model filter gives direct access to all the attributes of the EDM_MODEL instances. The following is the declaration of the EDM_MODEL entity:
ENTITY edm_model;
name : SIMPLEID;Â
model_id : UNIQUE_INDEX;Â
created : TIME_STAMP;Â
owner : edm_user;Â
group : edm_group;Â
administrators : SET OF USER_OR_GROUP;Â
protection : INTEGER;Â
access_rights_for : SET OF access_rights;Â
repository : edm_repository;Â
schema : edm_schema;Â
schema_map : OPTIONAL edm_schema_map;Â
sdai_model : sdai_model;
packed : BOOLEAN;
string_encoding : OPTIONAL STRING;Â
last_time_opened_for_read : PACKED_DATE;Â
last_opened_for_read_by : edm_user;Â
last_time_opened_for_write : PACKED_DATE;Â
last_opened_for_write_by : edm_user;Â
last_time_closed : PACKED_DATE;Â
instances : INTEGER;Â
data_size : INTEGER;Â
step_id_model : OPTIONAL sdai_model;Â
step_data_model : OPTIONAL sdai_model;Â
description : OPTIONAL STRING;Â
versions : OPTIONAL LIST OF edm_model_version;Â
last_model_version_id : OPTIONAL INTEGER;Â
END_ENTITY;
Â
The model filter will be included in the resulting Express-X conditional statement as follows;
". . . AND (<nameFilter>) AND . . ."
Examples:
"name LIKE 'IFC*'"
lists all model with a name that starts with "IFC". Â
"owner :<>: repository.owner"
lists all models that are not owned by the repository owner.
Â
- The Repository Filter
The repository filter gives access to the attributes of the EDM_REPOSITORY instance in the models repository attribute. The following is the declaration of the EDM_REPOSITORY entity:
ENTITY edm_repository;
name : SIMPLEID;
repository_id : UNIQUE_INDEX;
created : TIME_STAMP;
owner : edm_user;
group : edm_group;
administrators : SET OF USER_OR_GROUP;
protection : INTEGER;
access_rights_for : SET OF access_rights;
models : SET OF edm_model;
last_time_opened : PACKED_DATE;
last_opened_by : edm_user;
last_time_closed : PACKED_DATE;
sdai_repository : sdai_repository;
user_defined : BOOLEAN;
description : OPTIONAL STRING;
END_ENTITY;
The repository filter will be included in the resulting Express-X conditional statement as follows;
". . . AND (repository.<repositoryFilter>) AND . . ."
Examples:
"name = 'DataRepository'"
lists all models in the DataRepository. Â
"user_defined"
lists all models in user defined repositories.
Â
- The Owner Filter
The owner filter gives access to the attributes of the EDM_USER instance in the models owner attribute. The following is the declaration of the EDM_USER entity:
ENTITY edm_user;
name : SIMPLEID;Â
user_id : UNIQUE_INDEX;Â
user_name : OPTIONAL STRING;Â
created : TIME_STAMP;Â
last_time_connected : PACKED_DATE;Â
default_model_repositories_protection : INTEGER;Â
default_dictionary_models_protection : INTEGER;Â
default_data_models_protection : INTEGER;Â
default_extra_schemata_protection : INTEGER;Â
default_archived_models_protection : INTEGER;Â
creating_repository_permission : OPTIONAL BOOLEAN;Â
owning_system_instances : OPTIONAL SET OF entity_instance;Â
password_defined : BOOLEAN;Â
password : STRING;Â
END_ENTITY;
Â
The owner filter will be included in the resulting Express-X conditional statement as follows;
". . . AND (owner.<ownerFilter>) AND . . ."
Examples:
"user_id = 1"
lists all models owned by the superuser. Â
"name = 'Johnny'"
lists all models owned by Johnny.
- The Group Owner Filter
The group owner filter gives access to the attributes of the EDM_GROUP instance in the models group attribute. The following is the declaration of the EDM_GROUP entity:
ENTITY edm_group;
name : SIMPLEID;
group_id : UNIQUE_INDEX;
created : TIME_STAMP;
users : SET OF edm_user;
description : OPTIONAL STRING;
default_model_repositories_protection : INTEGER;
default_dictionary_models_protection : INTEGER;
default_data_models_protection : INTEGER;
default_extra_schemata_protection : INTEGER;
default_archived_models_protection : INTEGER;
creating_repository_permission : OPTIONAL BOOLEAN;
owning_system_instances : OPTIONAL SET OF entity_instance;
END_ENTITY;
Â
The group owner filter will be included in the resulting Express-X conditional statement as follows;
". . . AND (group.<groupOwnerFilter>) AND . . ."
Examples:
"group_id = 1"
lists all models owned by the 'sdai-group' group. Â
"name = 'Supervisor'"
lists all models owned by the 'Supervisor' group.
Â
- The Schema Filter
The schema filter gives access to the attributes of the EDM_SCHEMA instance in the models schema attribute. The following is the declaration of the EDM_SCHEMA entity:
ENTITY edm_schema;
name : SIMPLEID;
original_name : SIMPLEID;
schema_id : UNIQUE_INDEX;
sdai_schema : schema_definition;
dictionary_model : sdai_model;
models : SET OF edm_model;
schema_maps : SET OF edm_schema_map;
rule_schemata : SET OF edm_rule_schema;
query_schemata : SET OF edm_query_schema;
archived_models : OPTIONAL SET OF edm_archived_model;
xml_configuration : SET OF edm_xml_configuration;
description : OPTIONAL STRING;
source_stored : BOOLEAN;
source_file : OPTIONAL express_source_file;
line_number_offset : OPTIONAL INTEGER;
instantiable : BOOLEAN;
compilation_errors : OPTIONAL SET OF STRING;
compilation_warnings : OPTIONAL SET OF STRING;
compilation_sdai_errors : OPTIONAL SET OF STRING;
compilation_options : OPTIONAL INTEGER;
END_ENTITY;
Â
The schema filter will be included in the resulting Express-X conditional statement as follows;
". . . AND (schema.<schemaFilter>) AND . . ."
Examples:
"sorce_stored"
lists all models with underlying Express Schemas that was compiled with the STORING_SOURCE option.
"original_name LIKE 'Ifc*'"
lists all models of schemas with names starting with "Ifc".
Arguments
Type | Name | Comment |
SdaiServerContext | serverContextId | Context identification, from edmiDefineServerContext |
SdaiString | repositoryFilter | A filter that may refer to any attribute of the EDM_REPOSITORY instance in the repository attribute of a models EDM_MODEL instance in the ExpressDataManager model. |
SdaiString | nameFilter | A filter that may refer to any attribute of a models EDM_MODEL instance in the ExpressDataManager model. |
SdaiString | ownerFilter | A filter that may refer to any attribute of the EDM_USER instance in the owner attribute of a models EDM_MODEL instance in the ExpressDataManager model. |
SdaiString | groupOwnerFilter | A filter that may refer to any attribute of the EDM_GROUP instance in the group attribute of a models EDM_MODEL instance in the ExpressDataManager model. |
SdaiString | schemaFilter | A filter that may refer to any attribute of the EDM_SCHEMA instance in the schema attribute of a models EDM_MODEL instance in the ExpressDataManager model. |
SdaiOptions | options | Currently not used. |
SdaiString | foundNames | A variable that will receive a pointer to a buffer of model names that match Express-X conditional statement generated from all the given filters. |
SdaiInvocationId | edmiInvocationId | Currently not used. |
Return Value
Â
Options
 Â
Option | Comment |
Option name | Comment |
Â
Example
Â
/* List all models of an underlying Express Schema with a name that starts with 'IFC' and that is defined in the repository named 'GeneralHospital' */ int i; EdmiError rstat; SdaiServerContext suContext; SdaiString *modNames; /* Define Remote Server Context for the superuser */ rstat = edmiDefineServerContext("SuperUserContext", "superuser", NULL, "xfx56kl9", "TCP", "9090", "MyServerHost", NULL, NULL, NULL, NULL, NULL, &suContext); /* List all models in the repository 'GeneralHospital' that have an underlying Express Schema with a name that starts with 'IFC' */ rstat = edmiRemoteListModels(suContext, "NAME = 'GeneralHospital'", NULL, NULL, NULL, "NAME LIKE 'IFC*'", 0, &modNames, NULL); i = 0; while (modNames[i]) { printf("\nModel %s", modNames[i]); }edmiFree(modNames[i++]);
Â
See also
Filter by label
There are no items with the selected labels at this time.
Â