edmiWriteStepFileEx


 

EdmiError edmiWriteStepFileEx(SdaiString    repositoryName,
                               SdaiString    modelName,
                               SdaiString    headerModelRepositoryName,
                               SdaiString    headerModelName,
                               SdaiString    stepFile,
                               SdaiString    diaFileName,
                               SdaiString    shortNamesFile,
                               SdaiInteger   options,
                               SdaiInteger   realPrecision,
                               SdaiInteger   *nbWarnings,
                               SdaiInteger   *nbErrors,
                               SdaiErrorCode *sdaiError);

Invokes the EDMp21Handler to produce a STEP Physical File representation of a data model in the EDMdatabase. The STEP Physical File format is defined in ISO 10303-21: Clear text encoding of the exchange structures. A STEP Physical File is also referred to as a Part 21 file. STEP Physical File is one of the implementation forms of ISO 10303, and can be used to exchange data between two EDMdatabase s or between an EDMdatabase and any application that conforms to ISO 10303-21. The produced file can also be used for long time archiving of the data. The Header Section part of the STEP file can be produced from an existing header model in the EDMdatabase or a default Header Section can be produced when no header model is specified as input argument to this function. A header model is a model of the HEADER_SECTION_SCHEMA defined in ISO 10303-21. The default Header Section can be configured by setting the EDM system variable EDM_STEP_FILE_AUTHOR. For information on the format of the file in argument <shortNamesFile>, see Short names in the EDMsupervisor User Guide.
 

Arguments


1TypeNameComment
2SdaiString

repositoryName

The name of the data repository that contains the edmModel for which to create an ISO10303-P21 STEP file representation.

3SdaiString

modelName

The name of the edmModel to be exported to to an ISO10303-P21 STEP file.

4SdaiString

headerModelRepositoryName

The name of the data repository that contains the STEP Header Model of the edmModel for which to create an ISO10303-P21 STEP file representation.

5SdaiString

headerModelName

The name of the STEP Header Model in EDMdatabase that will be mapped to the Header Section in the resulting STEP file. STEP Header Model names are case sensitive. The specified STEP Header Model must be located in the repository specified by the <repositoryName> argument.
All instances in the specified <headerModelName> will be mapped to the STEP file Header Section as is, except that the attribute FILE_DESCRIPTION.IMPLEMENTATION_LEVEL is set according to the mapping method specified by one of the options; CONFORMANCE_CLASS_1, CONFORMANCE_CLASS_2 or EDM_PRIVATE_FORMAT. The attribute FILE_NAME.TIME_STAMP is set to the current date and time, i.e., the date and time when the STEP file is generated.
When the NO_HEADER_CHANGE option is set, the specified header model will be mapped as is, i.e., also the three attribute values described above will be mapped from the specified header model to the STEP file.
When the <headerModelName> argument is blank, a default Header Section will be generated. This default header section can be configured by setting the EDM system variable EDM_STEP_FILE_AUTHOR.

6SdaiString

stepFile

The name of the generated ISO-10303-P21 STEP file. The default file extension is ".stp".

7SdaiString

diaFileName

The name of the file that will receive diagnostic information from the generation of the STEP Physical File.
If this argument is empty ( = NULL) the diagnostics will be written to the EDMinterface current output device. Use edmiDefineOutputFunction to set the EDMinterface current output device.

8SdaiInteger

shortNamesFile

The name of the file containing mappings between full entity names and their corresponding unique short names.

9SdaiInteger

options

The options that will be used in the execution of the edmiWriteStepFileEx function. The options value should be specified as a bitwise OR between the options to be enabled. All available options are defined in the header file sdai.h. See below for a detailed description of the available options.

10SdaiInteger

realPrecision

Specifies an integer that denotes the number of significant digits after the decimal point in a REAL number in the resulting STEP file.
When <realPrecision> is set to zero, a system dependent default value is used.

11SdaiInteger

nbWarnings

Variable that will receive the number of warnings resulting from exporting the step file.

12SdaiInteger

nbErrors

Variable that will receive the number of errors encountered while exporting the step file.

13SdaiErrorCode

sdaiError

Variable that will receive the EDMinterface error code when the edmiWriteStepFileEx function encounters a problem with the communication with the EDMserver.

Return Value


Error rendering macro 'excerpt-include' : User 'null' does not have permission to view the page 'US:_r_EDMInterface'.

Options


 

OptionComment

CONFORMANCE_CLASS_1

Enforce the file to be exported according to ISO 10303-21:1994/TC1 conformance class 1 format. Identification of the format is written to the Header Section of the resulting STEP file.
The options CONFORMANCE_CLASS_1, CONFORMANCE_CLASS_2 and EDM_PRIVATE_FORMAT are mutually exclusive, i.e., only one of these options should be activated in one execution of the edmiWriteStepFile function.
CONFORMANCE_CLASS_1 is the default mapping method to use in the operation.

CONFORMANCE_CLASS_2

Enforce the file to be exported according to ISO 10303-21:1994/TC1 conformance class 2 format. Identification of the format is written to the Header Section of the resulting STEP file.
The options CONFORMANCE_CLASS_1, CONFORMANCE_CLASS_2 and EDM_PRIVATE_FORMAT are mutually exclusive, i.e., only one of these options should be activated in one execution of the edmiWriteStepFile function.

EDM_PRIVATE_FORMAT

Exports an EXPRESS Data Manager private format for more compressed exchange between two or more EDMdatabase. Identification of the format is written to the Header Section of the resulting STEP file.
Note: This is an EPM proprietary format, hence this format can only be used to exchange STEP files between EXPRESS Data Manager systems.
The options CONFORMANCE_CLASS_1, CONFORMANCE_CLASS_2 and EDM_PRIVATE_FORMAT are mutually exclusive, i.e., only one of these options should be activated in one execution of the edmiWriteStepFile function.

SHORT_NAMES

Specifies that the short names specified in the <shortNamesFile> argument will be used for entity names in the resulting STEP file.

EDM_IDENTIFIERS

Specifies that the EDMdatabase instanceID will be used as instance identifiers in the STEP Physical File such that it will be easy to find the correspondence between a mapped instance on the STEP file and the same instance in the EDMdatabase.

NO_HEADER_CHANGE

Specifies that the header model specified by the <headerModelName> argument will be mapped to the actual STEP file without any changes. Normally the mapping method, time stamp, and schema name will be provided by the EDMstepHandler function, but no information will be provided by the EDMstepHandler when this option is set. This argument is only effective when a header model is specified in the <headerModelName> argument.

NO_STRING_ENCODING

Specifies that no encoding will take place when mapping a STRING data type to the STEP file. The ISO 10303-21 specifies that all character in a STRING data type that have an ASCII value less than 32 or greater than 126 should be encoded in a STEP file.

NO_LINE_BREAKS

 

KEPT_STEP_IDENTIFIERS

The instanceIds of the edmModel population will be mapped to the corresponding stepIDs in the STEP Identifier model before they are exported to a STEP file.

COMPRESSED_FILE

 

HEADER_MODEL_ONLY

Specifies that only the Header Section of the specified STEP file will be parsed and a STEP Header Model will be created and populated in the EDMdatabase. No data model will be created when this option is set.

Example


 

 EdmiError rstat, err;
 SdaiInteger nWrn, nErr;
 SdaiModel modId;
  
 /* Import the ISO10303-21 file */
 if (rstat = edmiReadStepFileEx ("DataRepository", "MyModel", NULL, NULL,
 "c:/data/myP21file.stp", "c:/temp/myP21file.dia", 
 NULL, NULL, DELETING_EXISTING_MODEL|CONFORMANCE_CLASS_2, 
 &modId, &nWrn, &nErr, &err)) { 
 printf("\nError %d in edmiReadStepFileEx: %s", rstat,  
 edmiGetErrorText(rstat)); 
 goto error; 
 }
 . . .
 /* Modify population here */
 . . .
 /* Export the ISO10303-21 file */
 if (rstat = edmiWriteStepFileEx("DataRepository", "myModel", NULL, NULL,
 "c:/data/myP21file.stp", "c:/temp/myP21file.dia", 
 NULL, CONFORMANCE_CLASS_2, 6, &nWrn, &nErr, &err)) { 
 printf("\nError %d in edmiWriteStepFileEx: %s", rstat,  
 edmiGetErrorText(rstat)); 
 goto error; 
 }
 . . .
 error:
 . . .

 

See also

Filter by label

There are no items with the selected labels at this time.