| MIL 10 Reference
| Customize Help
| Save Settings

McodeStream



See also
Availability
Not available in MIL-Lite
Available in MIL

Available on Windows
Available on Linux with restrictions

Available on Non-Matrox computer
Available on Matrox 4Sight-X
Available on Matrox 4Sight GP
Available on Matrox Supersight
function map Function map
Examples
Synopsis
Load, restore, or save a code context from/to a file or a memory stream, or save a grading report to a file.
Syntax
void McodeStream(
MIL_TEXT_PTR MemPtrOrFileName, //in-out
MIL_ID SysId, //in
MIL_INT64 Operation, //in
MIL_INT64 StreamType, //in
MIL_DOUBLE Version, //in
MIL_INT64 ControlFlag, //in
MIL_ID *ContextOrResultCodeIdPtr, //in-out
MIL_INT *SizeByteVarPtr //out
)
Description

This function can load or restore a code context from a file or memory stream. Moreover, this function can also save a code context to a file or memory stream, and save a grading report to a file.

To inquire the number of bytes necessary to save a code context to memory stream, you should call this function (McodeStream()) first with M_INQUIRE_SIZE_BYTE.

The content saved to memory stream is equivalent to the content saved to file. In addition, any file saved using this function is equivalent to a file saved with McodeSave().

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 McodeStream(), you can choose to save a backwards-compatible version of the code context, which will work using a specified version of MIL that is up to one major release older than the current version. For example, if you allocate a code context 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 a code context saved using MIL version 7.0 or above. Settings that do not exist in the lower version will be filled with default values when the code context is loaded or restored using the current version.

Note that this function reference has not been updated for a MIL system added during a MIL update. Refer to the MIL system's release note to see if there is complementary information.
Parameters
This function is not supported on the selected boards.
Parameters
MemPtrOrFileName

Specifies the file or memory stream.

function map For specifying the file name or memory stream
CollapseValue Description
Collapse M_NULL

Specifies to ignore this parameter. The parameter must be set to M_NULL when performing an M_INQUIRE_SIZE_BYTE operation.

(summarize)
Collapse 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.

Collapse 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. For easier use with other Matrox Imaging software products, when saving a code context to a file, use the MCO file extension. The function internally handles the opening and closing of the file. If the file already exists, it will be overwritten when M_SAVE is performed.

To save the file on the remote computer (under Distributed MIL), prefix the specified file name string with "remote:///" (for example, "remote:///C:\mydirectory\myfile").

(summarize)
Collapse MemPtr

Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. The designated block must be large enough to stream the entire context. To ascertain the required size, call this function (McodeStream()) first with M_INQUIRE_SIZE_BYTE.

When you allocate the block of memory, the memory pointer is of type MIL_UINT8. In this case, you must cast the MIL_UINT8 pointer to a MIL_TEXT_PTR.

(summarize)

1 If you are passing the value in a variable, don't enclose it in MIL_TEXT().

SysId

Specifies the system on which to restore the code context.

For an M_RESTORE operation, this parameter should be set to one of the following values:

function map For a restore operation
CollapseValue Description
Collapse M_DEFAULT_HOST

Specifies the default Host system of the current MIL application.

Collapse MIL system identifier

Specifies a valid system identifier, previously allocated using MsysAlloc().

For an M_SAVE and M_SAVE_REPORT operation, this parameter should be set to the following value:

function map For a save report or save operation
CollapseValue Description
Collapse M_NULL

Specifies that this parameter is not applicable.

Operation

Specifies the operation to perform on the code context. This parameter must be set to one of the following values:

function map For specifying the operation to perform on the code context
CollapseValue Description
Collapse M_INQUIRE_SIZE_BYTE

Inquires the number of bytes required to save a code context to memory stream. This operation is not supported when the StreamType parameter is set to M_FILE.

(summarize)
Collapse M_LOAD

Loads the content of a specified file or memory stream into a previously allocated code context.

Collapse M_RESTORE

Restores a code context from a file or memory stream and assigns a MIL identifier to this context.

Collapse M_SAVE

Saves a code context to a specified file or memory stream.

Collapse M_SAVE_REPORT

Saves a report containing most of the results from a grading operation as a flat text file. This operation is only supported when the StreamType parameter is set to M_FILE.

(summarize)
StreamType

Specifies the type of stream in which to store/from which to restore the code context. This parameter must be set to one of the following values:

function map For specifying the type of stream
CollapseValue Description
Collapse M_FILE

Specifies a file stream. Note that this is the only value available when performing an M_SAVE_REPORT operation.

(summarize)
Collapse M_MEMORY

Specifies a memory stream. You are responsible for allocating a block of memory for the stream.

(summarize)
Version

Specifies the MIL version of the code context. This parameter must be set to one of the following values.

function map For specifying the MIL version
CollapseValue Description
Collapse M_DEFAULT

Specifies the default version.

For an M_SAVE or M_INQUIRE_SIZE_BYTE operation, it sets the version to current version of MIL.

For an M_LOAD or M_RESTORE operation, it reads the file or stream for the version information. This is the only possible setting for these operations.

For an M_SAVE_REPORT operation, no version information is stored in the text file. This is the only possible setting for this operation.

(summarize)
Collapse M_PROC_VERSION_90

Sets the version to MIL 9.0.

This option is available only for M_INQUIRE_SIZE_BYTE and M_SAVE operations.

(summarize)
Collapse M_PROC_VERSION_90_PP1

Sets the version to MIL 9.0 Processing Pack 1.

This option is available only for M_INQUIRE_SIZE_BYTE and M_SAVE operations.

(summarize)
Collapse M_PROC_VERSION_90_PP2

Sets the version to MIL 9.0 Processing Pack 2.

This option is available only for M_INQUIRE_SIZE_BYTE and M_SAVE operations.

(summarize)
Collapse M_PROC_VERSION_100

Sets the version to MIL 10.0.

This option is available only for M_INQUIRE_SIZE_BYTE and M_SAVE operations.

(summarize)
Collapse M_PROC_VERSION_100_PP1

Sets the version to MIL 10.0 Processing Pack 1.

This option is available only for M_INQUIRE_SIZE_BYTE and M_SAVE operations.

(summarize)
ControlFlag

Reserved for future expansion. This parameter must be set to M_DEFAULT.

ContextOrResultCodeIdPtr

Specifies the address of the variable in which to write or from which to read the identifier of the code context.

For M_INQUIRE_SIZE_BYTE, M_SAVE operations, ContextOrResultCodeIdPtr specifies the address of the variable from which to read the code context identifier.

For an M_LOAD operation, ContextOrResultCodeIdPtr specifies the address of the variable from which to read the identifier of the code context in which to load the file or memory stream content.

For an M_RESTORE operation, ContextOrResultCodeIdPtr specifies the address of the variable from which to return the identifier of the restored code context. If the operation is not successful, M_NULL is returned.

For an M_SAVE_REPORT operation, ContextOrResultCodeIdPtr specifies the address in which to read the identifier of the code results buffer. If the operation is not successful, M_NULL is returned.

SizeByteVarPtr

Specifies the address of the variable in which to write the size of the code context, in bytes. If the size is not required, or if performing an M_SAVE_REPORT operation, set this parameter to M_NULL.

Note that the size of a code context will vary depending on the MIL version specified.

Compilation information
Header Include mil.h.
Library Use mil.lib; milcode.lib.
DLL Requires mil.dll; milcode.dll.
NULL INTERACTIVE DEFAULT HOST NULL INQUIRE SIZE BYTE LOAD RESTORE SAVE SAVE REPORT FILE MEMORY DEFAULT PROC VERSION 90 PROC VERSION 90 PP1 PROC VERSION 90 PP2 PROC VERSION 100 PROC VERSION 100 PP1 LOAD) RESTORE) SAVE) LOAD) RESTORE) SAVE) LOAD RESTORE SAVE