9.8. ODPI-C Message Properties Functions

Message properties handles are used to represent the properties of messages that are enqueued and dequeued using advanced queuing. They are created by calling the function dpiConn_newMsgProps() and are destroyed by releasing the last reference by calling the function dpiMsgProps_release().

int dpiMsgProps_addRef(dpiMsgProps *props)

Adds a reference to the message properties. This is intended for situations where a reference to the message properties needs to be maintained independently of the reference returned when the handle was created.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

The message properties to which a reference is to be added. If the reference is NULL or invalid, an error is returned.

int dpiMsgProps_getNumAttempts(dpiMsgProps *props, int32_t *value)

Returns the number of attempts that have been made to dequeue a message.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the number of attempts is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to the value, which will be populated upon successful completion of this function.

int dpiMsgProps_getCorrelation(dpiMsgProps *props, const char **value, uint32_t *valueLength)

Returns the correlation supplied by the producer when the message was enqueued.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the correlation is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to the value, as a byte string in the encoding used for CHAR data, which will be populated upon successful completion of this function. If there is no correlation, the pointer will be populated with the value NULL.

valueLength

OUT

A pointer to the length of the value, in bytes, which will be populated upon successful completion of this function. If there is no correlation, the pointer will be populated with the value 0.

int dpiMsgProps_getDelay(dpiMsgProps *props, int32_t *value)

Returns the number of seconds the enqueued message will be delayed.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the delay is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to the value, which will be populated upon successful completion of this function.

int dpiMsgProps_getDeliveryMode(dpiMsgProps *props, dpiMessageDeliveryMode *value)

Returns the mode that was used to deliver the message.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the message delivery mode is to be retrieved. If the reference is NULL or invalid an error is returned.

value

OUT

A pointer to the value, which will be populated upon successful completion of this function. It will be one of the values from the enumeration dpiMessageDeliveryMode.

int dpiMsgProps_getEnqTime(dpiMsgProps *props, dpiTimestamp *value)

Returns the time that the message was enqueued.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the enqueue time is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to a dpiTimestamp structure, which will be populated upon successful completion of this function.

int dpiMsgProps_getExceptionQ(dpiMsgProps *props, const char **value, uint32_t *valueLength)

Returns the name of the queue to which the message is moved if it cannot be processed successfully. See function dpiMsgProps_setExceptionQ() for more information.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the name of the exception queue is to be retrieved. If the reference is NULL or invalid an error is returned.

value

OUT

A pointer to the value, as a byte string in the encoding used for CHAR data, which will be populated upon successful completion of this function. If there is no exception queue name, the pointer will be populated with the value NULL.

valueLength

OUT

A pointer to the length of the value, in bytes, which will be populated upon successful completion of this function. If there is no exception queue name, the pointer will be populated with the value 0.

int dpiMsgProps_getExpiration(dpiMsgProps *props, int32_t *value)

Returns the number of seconds the message is available to be dequeued. See function dpiMsgProps_setExpiration() for more information.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the expiration is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to the value, which will be populated upon successful completion of this function.

int dpiMsgProps_getMsgId(dpiMsgProps *props, const char **value, uint32_t *valueLength)

Returns the id of the message in the queue that generated this message. No value is available until the message has been enqueued or dequeued.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the message id is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to the value, as a byte string in the encoding used for CHAR data, which will be populated upon successful completion of this function. If there is no message id, the pointer will be populated with the value NULL.

valueLength

OUT

A pointer to the length of the value, in bytes, which will be populated upon successful completion of this function. If there is no message id, the pointer will be populated with the value 0.

int dpiMsgProps_getOriginalMsgId(dpiMsgProps *props, const char **value, uint32_t *valueLength)

Returns the id of the message in the last queue that generated this message. See function dpiMsgProps_setOriginalMsgId() for more information.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the original message id is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to the value, as a byte string in the encoding used for CHAR data, which will be populated upon successful completion of this function. If there is no original message id, the pointer will be populated with the value NULL.

valueLength

OUT

A pointer to the length of the value, in bytes, which will be populated upon successful completion of this function. If there is no original message id, the pointer will be populated with the value 0.

int dpiMsgProps_getPayload(dpiMsgProps *props, dpiObject **obj, const char **value, uint32_t *valueLength)

Returns the payload associated with the message properties. The payload can either be an object or an arbitrary series of bytes and is available after a call to dpiQueue_deqOne() or dpiQueue_deqMany().

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the payload is to be retrieved. If the reference is NULL or invalid, an error is returned.

obj

OUT

A reference to an object which will be populated upon successful completion of this function. If the payload is not an object, this value will be NULL. This parameter can also be NULL.

value

OUT

A pointer to the value, as a byte string, which will be populated upon successful completion of this function. If the payload is not a series of bytes, this value will be NULL. This parameter can also be NULL.

valueLength

OUT

A pointer to the length of the value, in bytes, which will be populated upon successful completion of this function. If the payload is not a series of bytes, this value will be 0. This parameter can also be NULL.

int dpiMsgProps_getPayloadJson(dpiMsgProps *props, dpiJson **json)

Returns the payload associated with the message properties, The payload must be a JSON object and is available after the call to dpiQueue_deqOne() or dpiQueue_deqMany(); otherwise, the value NULL will be returned.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the payload is to be retrieved. If the reference is NULL or invalid, an error is returned.

json

OUT

A reference to a JSON object which will be populated upon successful completion of this function. If the payload is not a JSON object, this value will be NULL.

int dpiMsgProps_getPriority(dpiMsgProps *props, int32_t *value)

Returns the priority assigned to the message. See function dpiMsgProps_setPriority() for more information.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the priority is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to the value, which will be populated upon successful completion of this function.

int dpiMsgProps_getState(dpiMsgProps *props, dpiMessageState *value)

Returns the state of the message at the time of dequeue.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties from which the message state is to be retrieved. If the reference is NULL or invalid, an error is returned.

value

OUT

A pointer to the value, which will be populated upon successful completion of this function. It will be one of the values from the enumeration dpiMessageState.

int dpiMsgProps_release(dpiMsgProps *props)

Releases a reference to the message properties. A count of the references to the message properties is maintained and when this count reaches zero, the memory associated with the properties is freed.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

The message properties from which a reference is to be released. If the reference is NULL or invalid, an error is returned.

int dpiMsgProps_setCorrelation(dpiMsgProps *props, const char *value, uint32_t valueLength)

Sets the correlation of the message to be dequeued. Special pattern matching characters such as the percent sign (%) and the underscore (_) can be used. If multiple messages satisfy the pattern, the order of dequeuing is undetermined.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the correlation is to be set. If the reference is NULL or invalid, an error is returned.

value

IN

A byte string in the encoding used for CHAR data, or NULL if the correlation is to be cleared.

valueLength

IN

The length of the value parameter in bytes, or 0 if the value parameter is NULL.

int dpiMsgProps_setDelay(dpiMsgProps *props, int32_t value)

Sets the number of seconds to delay the message before it can be dequeued. Messages enqueued with a delay are put into the DPI_MSG_STATE_WAITING state. When the delay expires the message is put into the DPI_MSG_STATE_READY state. Dequeuing directly by message id overrides this delay specification. Note that delay processing requires the queue monitor to be started.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the delay is to be set. If the reference is NULL or invalid, an error is returned.

value

IN

The value to set.

int dpiMsgProps_setExceptionQ(dpiMsgProps *props, const char *value, uint32_t valueLength)

Sets the name of the queue to which the message is moved if it cannot be processed successfully. Messages are moved if the number of unsuccessful dequeue attempts has reached the maximum allowed number or if the message has expired. All messages in the exception queue are in the DPI_MSG_STATE_EXPIRED state.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the name of the exception queue is to be set. If the reference is NULL or invalid, an error is returned.

value

IN

A byte string in the encoding used for CHAR data, or NULL if the exception queue name is to be cleared. If not NULL, the value must refer to a valid queue name.

valueLength

IN

The length of the value parameter in bytes, or 0 if the value parameter is NULL.

int dpiMsgProps_setExpiration(dpiMsgProps *props, int32_t value)

Sets the number of seconds the message is available to be dequeued. This value is an offset from the delay. Expiration processing requires the queue monitor to be running. Until this time elapses, the messages are in the queue in the state DPI_MSG_STATE_READY. After this time elapses messages are moved to the exception queue in the DPI_MSG_STATE_EXPIRED state.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the expiration is to be set. If the reference is NULL or invalid, an error is returned.

value

IN

The value to set.

int dpiMsgProps_setOriginalMsgId(dpiMsgProps *props, const char *value, uint32_t valueLength)

Sets the id of the message in the last queue that generated this message.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the original message identifier is to be set. If the reference is NULL or invalid an error is returned.

value

IN

A pointer to the bytes making up the message identifier, or NULL if no identifier is to be specified.

valueLength

IN

The length of the value parameter in bytes, or 0 if the value parameter is NULL.

int dpiMsgProps_setPayloadBytes(dpiMsgProps *props, const char *value, uint32_t valueLength)

Sets the payload for the message as a series of bytes. This value will be used when the message is enqueued using dpiQueue_enqOne() or dpiQueue_enqMany().

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the payload is to be set. If the reference is NULL or invalid, an error is returned.

value

IN

A pointer to the bytes making up the payload.

valueLength

IN

The length of the value parameter in bytes.

int dpiMsgProps_setPayloadJson(dpiMsgProps *props, dpiJson *json)

Sets the payload for the message as a JSON object. This value will be used when the message is enqueued using dpiQueue_enqOne() or dpiQueue_enqMany().

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the payload is to be set. If the reference is NULL or invalid, an error is returned.

json

IN

A reference to the JSON object that will be used as the message payload. If the reference is NULL or invalid, an error is returned.

int dpiMsgProps_setPayloadObject(dpiMsgProps *props, dpiObject *obj)

Sets the payload for the message as an object. This value will be used when the message is enqueued using dpiQueue_enqOne() or dpiQueue_enqMany().

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the payload is to be set. If the reference is NULL or invalid, an error is returned.

obj

IN

A reference to the object that will be used as the message payload. If the reference is NULL or invalid, an error is returned.

int dpiMsgProps_setPriority(dpiMsgProps *props, int32_t value)

Sets the priority assigned to the message. A smaller number indicates a higher priority. The priority can be any number, including negative numbers.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the priority is to be set. If the reference is NULL or invalid, an error is returned.

value

IN

The value to set.

int dpiMsgProps_setRecipients(dpiMsgProps *props, dpiMsgRecipient *recipients, uint32_t numRecipients)

Sets recipients list for the message to be enqueued.

The function returns DPI_SUCCESS for success and DPI_FAILURE for failure.

Parameter

Mode

Description

props

IN

A reference to the message properties on which the recipients list is to be set. If the reference is NULL or invalid, an error is returned.

recipients

IN

A pointer to an array of dpiMsgRecipient structures which indicate to which recipients the message should be sent.

numRecipients

IN

The number of recipients in the recipients list.