ClassesClassesClassesClasses | | | | Operators

send_datasend_dataSendDatasend_dataSendDataSendData (Operator)

Name

send_datasend_dataSendDatasend_dataSendDataSendData — Send arbitrary data to external devices or applications using a generic socket communication.

Signature

send_data( : : Socket, Format, Data, To : )

Herror send_data(const Hlong Socket, const char* Format, const char* Data, const char* To)

Herror T_send_data(const Htuple Socket, const Htuple Format, const Htuple Data, const Htuple To)

Herror send_data(const HTuple& Socket, const HTuple& Format, const HTuple& Data, const HTuple& To)

void HSocket::SendData(const HTuple& Format, const HTuple& Data, const HTuple& To) const

void SendData(const HTuple& Socket, const HTuple& Format, const HTuple& Data, const HTuple& To)

void HSocket::SendData(const HString& Format, const HTuple& Data, const HTuple& To) const

void HSocket::SendData(const HString& Format, const HString& Data, const HString& To) const

void HSocket::SendData(const char* Format, const char* Data, const char* To) const

void HOperatorSetX.SendData(
[in] VARIANT Socket, [in] VARIANT Format, [in] VARIANT Data, [in] VARIANT To)

void HSocketX.SendData(
[in] BSTR Format, [in] VARIANT Data, [in] VARIANT To)

static void HOperatorSet.SendData(HTuple socket, HTuple format, HTuple data, HTuple to)

void HSocket.SendData(string format, HTuple data, HTuple to)

void HSocket.SendData(string format, string data, string to)

Description

send_datasend_dataSendDatasend_dataSendDataSendData sends arbitrary data over a socket connection. The sent data is converted to a binary network packet from a value (or a tuple of values) using the parameter FormatFormatFormatFormatFormatformat as specification and is well-suited to communicate with external devices or applications. This operator does not support the standard 'HALCON'"HALCON""HALCON""HALCON""HALCON""HALCON" protocol, but is intended for arbitrary data transfer.

The parameter FormatFormatFormatFormatFormatformat specifies how to convert the given tuples to a binary packet. It uses one or multiple qualifier characters each followed by an optional modifier and repeat count. Most qualifiers require a single value in the DataDataDataDataDatadata parameter which will be converted.

The following characters are allowed in this format string:

Integer values:

'c':

one byte = 8 bit, signed

'C':

same as 'c' but unsigned

's':

two bytes = 16 bit, signed

'S':

same as 's' but unsigned

'i':

four bytes = 32 bit, signed

'I':

same as 'i' but unsigned

'q':

eight bytes = 64 bit, signed (only available on 64bit architectures)

'Q':

same as 'q' but unsigned

Float values:

'f':

float, 4 bytes = 32 bit

'd':

double, 8 bytes = 64 bit

String values:

'A':

string (default length 1024 bytes), padded with spaces

'Z':

string (default length 1024 bytes), padded with NULL-Bytes and will be NULL terminated when sending

'z':

string with variable length, the length modifier specifies the maximum length (default length 1024 bytes)

Special characters which do not require a value as DataDataDataDataDatadata parameter:

'-':

a single byte is written as binary NULL or when reading, a NULL-Byte is skipped

'_':

a single byte is written as space (binary 0x20) or when reading, a space byte is skipped

' ':

ignored, can be used to enhance readability of the format string

Modifiers which can be used after one of the qualifiers above:

'n':

convert the integer or float value when writing to or when reading from network byte order (big endian) to host byte order

'N':

convert the integer or float value when writing to or when reading from intel byte order (little endian) to host byte order

'0-n':

specify a repeat count for the preceding qualifier, e.g., 'c5' means the same as 'ccccc' (and requires therefore a tuple of 5 values) but 'A10' means a string with a size of 10 bytes (and requires only one value)

The modifiers 'n' and 'N' can also be used as first character in the format string and set the default byte order. 'n', which means network byte order, is the default byte order when nothing else is specified.

For UDP connections the binary data must be transferred in one network packet so that the size of the binary data must not be bigger than one network packet. Usually this means it should be smaller than the MTU (maximum transfer unit) of the interface, which is usually about 1500 bytes, but only 576 bytes are guaranteed (1280 bytes for IPv6).

The parameter ToToToToToto should be left empty for socket connections that are already bound (all TCP connections and bound UDP connections), but in case of an unbound UDP connection it must be used to specify the IP address or host name and port number of the communication partner.

Parallelization

Parameters

SocketSocketSocketSocketSocketsocket (input_control)  socket_id HSocket, HTupleHTupleHSocket, HTupleHSocketX, VARIANTHtuple (integer) (IntPtr) (Hlong) (Hlong) (Hlong) (Hlong)

Socket number.

FormatFormatFormatFormatFormatformat (input_control)  string HTupleHTupleHTupleVARIANTHtuple (string) (string) (HString) (char*) (BSTR) (char*)

Specification how to convert the data.

Default value: 'z' "z" "z" "z" "z" "z"

DataDataDataDataDatadata (input_control)  string(-array) HTupleHTupleHTupleVARIANTHtuple (string / real / integer) (string / double / int / long) (HString / double / Hlong) (char* / double / Hlong) (BSTR / double / Hlong) (char* / double / Hlong)

Value (or tuple of values) holding the data to send.

ToToToToToto (input_control)  string(-array) HTupleHTupleHTupleVARIANTHtuple (string / integer) (string / int / long) (HString / Hlong) (char* / Hlong) (BSTR / Hlong) (char* / Hlong)

IP address or hostname and network port of the communication partner.

Default value: []

List of values: [], ['localhost',3000]["localhost",3000]["localhost",3000]["localhost",3000]["localhost",3000]["localhost",3000]

Possible Predecessors

open_socket_connectopen_socket_connectOpenSocketConnectopen_socket_connectOpenSocketConnectOpenSocketConnect, socket_accept_connectsocket_accept_connectSocketAcceptConnectsocket_accept_connectSocketAcceptConnectSocketAcceptConnect, get_socket_paramget_socket_paramGetSocketParamget_socket_paramGetSocketParamGetSocketParam, set_socket_paramset_socket_paramSetSocketParamset_socket_paramSetSocketParamSetSocketParam

Possible Successors

close_socketclose_socketCloseSocketclose_socketCloseSocketCloseSocket

See also

receive_datareceive_dataReceiveDatareceive_dataReceiveDataReceiveData

Module

Foundation


ClassesClassesClassesClasses | | | | Operators