MIL_TEXT_PTR MemPtrOrFileName, | //in-out |
MIL_ID SystemId, | //in |
MIL_INT64 Operation, | //in |
MIL_INT64 StreamType, | //in |
MIL_DOUBLE Version, | //in |
MIL_INT64 ControlFlag, | //in |
MIL_ID *ModelIdPtr, | //in-out |
MIL_INT *SizeByteVarPtr | //out |
This function can load or restore a pattern matching model from a file or memory stream. All of the pattern matching model settings that were in effect when the pattern matching model was saved will be restored. A loaded or restored pattern matching model is not preprocessed, therefore you must call MpatPreprocModel() before performing a search with MpatFindModel() or MpatFindMultipleModel().
This function can also save a pattern matching model to a file or memory stream. All information about the previously allocated pattern matching model is saved, including all of the model's current search settings. However, any effects of preprocessing are not saved.
To inquire the number of bytes necessary to save a pattern matching model to memory stream, you should first call this function (MpatStream()) with M_INQUIRE_SIZE_BYTE.
The content saved to memory stream is equivalent to the content saved to file. In addition, any file saved with MpatSave() is equivalent to a file saved using this function.
You can use this and other MIL stream functions, for example, to save all required MIL objects, as well as any other custom data, for your application to a memory stream. Once in a memory stream, you can write the stream to a single file or transfer it over a network. You are responsible for concatenating the streams and for saving the stream to file.
Using MpatStream(), you can choose to save a backwards-compatible version of the pattern matching model, which will work using a version of MIL that is up to one major release older than the current version (depending on which version is specified). For example, if you allocate a pattern matching model using MIL 9.0 and save it to version 8.0, you can restore this context on a computer where MIL 8.0 is installed. However, all settings and features unique to the higher version will be ignored when restored using the lower version. Besides saving backwards-compatible versions, you can also load or restore pattern matching models saved using MIL version 9.0 or above. Settings that do not exist in the lower version will be filled with default values when the pattern matching model is loaded or restored.
Specifies the file or memory stream.
For specifying the file or memory
stream
|
|||||||||||||||||||||||||||||||||||||||
Value | Description
|
||||||||||||||||||||||||||||||||||||||
M_NULL |
Specifies to ignore this parameter. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_INTERACTIVE |
[This is
only applicable to Windows]
Opens a dialog box from which you can interactively specify the drive, directory, and name of the file, when the StreamType parameter is set to M_FILE. |
||||||||||||||||||||||||||||||||||||||
MIL_TEXT("FileName") 1 |
Specifies the drive, directory, and name of the file (for example, "C:\mydirectory\myfile"), when the StreamType parameter is set to M_FILE. (more details...) |
||||||||||||||||||||||||||||||||||||||
MemPtr |
Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. (more details...) |
1 If you are passing the value in a variable, don't enclose it in MIL_TEXT().
Specifies the system on which to restore the pattern matching model. For an M_RESTORE operation, set this parameter to one of the following values:
For a restore operation
|
|||||||||||||||||||||||||||||||||||||||
Value | Description
|
||||||||||||||||||||||||||||||||||||||
M_DEFAULT_HOST |
Specifies the default Host system of the current MIL application. |
||||||||||||||||||||||||||||||||||||||
MIL system identifier |
Specifies a valid system identifier, previously allocated using MsysAlloc(). |
For M_INQUIRE_SIZE_BYTE, M_LOAD, and M_SAVE, this parameter must be set to the following value:
For a load or save operation, or when
inquiring the required number of bytes for a save
operation
|
|||||||||||||||||||||||||||||||||||||||
Value | Description
|
||||||||||||||||||||||||||||||||||||||
M_NULL |
Specifies that this parameter is not applicable. |
Specifies the operation to perform on the pattern matching model. This parameter must be set to one of the following values:
For specifying the operation
|
|||||||||||||||||||||||||||||||||||||||
Value | Description
|
||||||||||||||||||||||||||||||||||||||
M_INQUIRE_SIZE_BYTE |
Inquires the number of bytes required to save a pattern matching model to memory stream. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_LOAD |
Loads the content of a specified file or memory stream into a previously allocated pattern matching model. |
||||||||||||||||||||||||||||||||||||||
M_RESTORE |
Restores a pattern matching model from a file or memory stream and assigns it an identifier. |
||||||||||||||||||||||||||||||||||||||
M_SAVE |
Saves a pattern matching model to a specified file or memory stream. |
Specifies the type of stream in which to store/from which to restore the pattern matching model. This parameter must be set to one of the following values:
For specifying the type of
stream
|
|||||||||||||||||||||||||||||||||||||||
Value | Description
|
||||||||||||||||||||||||||||||||||||||
M_FILE |
Specifies a file stream. |
||||||||||||||||||||||||||||||||||||||
M_MEMORY |
Specifies a memory stream. (more details...) |
Specifies the MIL version of the pattern matching model. This parameter must be set to one of the following values.
For specifying the MIL
version
|
|||||||||||||||||||||||||||||||||||||||
Value | Description
|
||||||||||||||||||||||||||||||||||||||
M_DEFAULT |
Specifies the default version. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_90 |
Sets the version to MIL 9.0. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_90_PP1 |
Sets the version to MIL 9.0 Processing Pack 1. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_90_PP2 |
Sets the version to MIL 9.0 Processing Pack 2. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_100 |
Sets the version to MIL 10.0. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_100_PP1 |
Sets the version to MIL 10.0 Processing Pack 1. (more details...) |
Specifies the address of the variable in which to write or from which to read the identifier of the pattern matching model.
For M_INQUIRE_SIZE_BYTE and M_SAVE operations, ModelIdPtr specifies the address of the variable from which to read the pattern matching model identifier.
For an M_LOAD operation, ModelIdPtr specifies the address of the variable from which to read the identifier of the pattern matching model where the file or memory stream content will be loaded.
For an M_RESTORE operation, ModelIdPtr specifies the address in which to return the identifier of the restored pattern matching model. If the operation is not successful, M_NULL is returned.
Header | Include mil.h. |
Library | Use mil.lib; milpat.lib. |
DLL | Requires mil.dll; milpat.dll. |