theLink 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard
c - tcl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
MqContextC_ReadApi_Atom_PY_API

MqContextC - read a single-data-item outof a read-data-packageMore...

+ Collaboration diagram for MqContextC_ReadApi_Atom_PY_API:

Functions

static OT_ProcRet pymqmsgque_MqContextC_ReadALL (MqContextC_ARGS)
  Python: MkBufferListC ctx.ReadALL(?val_inout:MkBufferListC=None?) C-API
get a temporary MkBufferListC from all data in the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadBFL (MqContextC_ARGS)
  Python: MkBufferListC ctx.ReadBFL() C-API
get a temporary MkBufferListC from next list-item in the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadBUF (MqContextC_ARGS)
  Python: MkBufferC ctx.ReadBUF() C-API
get a temporary MkBufferC from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadBIN (MqContextC_ARGS)
  Python: doc_mq_py_ReadBIN C-API
generic function to read an MK_BIN object from the read-data-package object …
 
static OT_ProcRet pymqmsgque_MqContextC_ReadBOL (MqContextC_ARGS)
  Python: doc_mq_py_ReadBOL C-API
read a PRIMITIVE TYPE from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadBinaryR (MqContextC_ARGS)
  Python: binary ctx.ReadBinaryR() C-API
read a MkBinaryR from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadDBL (MqContextC_ARGS)
  Python: doc_mq_py_ReadDBL C-API
read a PRIMITIVE TYPE from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadFLT (MqContextC_ARGS)
  Python: doc_mq_py_ReadFLT C-API
read a PRIMITIVE TYPE from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadHDL (MqContextC_ARGS)
  Python: MK_HDL ctx.ReadHDL() C-API
read the handle from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadI16 (MqContextC_ARGS)
  Python: doc_mq_py_ReadI16 C-API
read a PRIMITIVE TYPE from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadI32 (MqContextC_ARGS)
  Python: doc_mq_py_ReadI32 C-API
read a PRIMITIVE TYPE from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadI64 (MqContextC_ARGS)
  Python: doc_mq_py_ReadI64 C-API
read a PRIMITIVE TYPE from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadI8 (MqContextC_ARGS)
  Python: doc_mq_py_ReadI8 C-API
read a PRIMITIVE TYPE from the read-data-package
 
PyObject * pymqmsgque_MqContextC_ReadLIST (MqContextC_ARGS)
  Python: [list...] ctx.ReadLIST() C-API
get all arguments as native list …
 
static OT_ProcRet pymqmsgque_MqContextC_ReadLONG (MqContextC_ARGS)
  Python: long ctx.ReadLONG() C-API
read the long native object from the read-data-package
 
PyObject * pymqmsgque_MqContextC_ReadNEXT (MqContextC_ARGS)
  Python: obj ctx.ReadNEXT() C-API
get the next argument as native object …
 
static OT_ProcRet pymqmsgque_MqContextC_ReadSTR (MqContextC_ARGS)
  Python: doc_mq_py_ReadSTR C-API
read a PRIMITIVE TYPE from the read-data-package
 
static OT_ProcRet pymqmsgque_MqContextC_ReadStringR (MqContextC_ARGS)
  Python: string ctx.ReadStringR() C-API
read a MkStringR from the read-data-package
 

Detailed Description

MqContextC - read a single-data-item outof a read-data-package

Function Documentation

◆ pymqmsgque_MqContextC_ReadALL()

static OT_ProcRet pymqmsgque_MqContextC_ReadALL ( MqContextC_ARGS )
static

Python: MkBufferListC ctx.ReadALL(?val_inout:MkBufferListC=None?) C-API
get a temporary MkBufferListC from all data in the read-data-package

Definition at line 1934 of file MqContextC_py.c.

1934 {
1936 OT_SETUP_VARARGS(0,1,ReadALL_doc)
1937 MkBufferListCreateTLS_T(val_inout,10);
1938 OT_CHECK_OPTIONAL(OT_CHECK_BFL (val_inout,MK_NULL_YES))
1939 OT_CHECK_NOARGS
1940 MkErrorC_Check(hdl,MqReadALL (hdl, &val_inout));
1941 OT_retObj_SET_BFL(val_inout)
1942 goto end;
1943 error:
1944 OT_retObj_SET_Error
1945 end:
1947}
#define OT_SETUP_hdl
#define ReadALL_doc
#define OT_retObj_RETURN
#define error
#define MkBufferListCreateTLS_T(name, num)
#define MK_NULL_YES
#define MqReadALL(...)

◆ pymqmsgque_MqContextC_ReadBFL()

static OT_ProcRet pymqmsgque_MqContextC_ReadBFL ( MqContextC_ARGS )
static

Python: MkBufferListC ctx.ReadBFL() C-API
get a temporary MkBufferListC from next list-item in the read-data-package

Definition at line 1952 of file MqContextC_py.c.

1952 {
1954 OT_SETUP_NOARG(ReadBFL_doc)
1955 OT_CHECK_NOARGS
1956 MK_BFL val_out;
1957 MkErrorC_Check(hdl,MqReadBFL (hdl, &val_out));
1958 OT_retObj_SET_BFL(val_out)
1959 goto end;
1960 error:
1961 OT_retObj_SET_Error
1962 end:
1964}
#define ReadBFL_doc
#define MqReadBFL(...)

◆ pymqmsgque_MqContextC_ReadBIN()

static OT_ProcRet pymqmsgque_MqContextC_ReadBIN ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadBIN C-API
generic function to read an MK_BIN object from the read-data-package object …

Definition at line 1984 of file MqContextC_py.c.

1984 {
1986 OT_SETUP_NOARG(ReadBIN_doc)
1987 OT_CHECK_NOARGS
1988 MkBinaryR val_out;
1989 MkErrorC_Check(hdl,MqReadBIN (hdl, &val_out));
1990 MkBinaryR retVal = val_out;
1991 OT_retObj_SET(OT_GET__ME_REF_MkBinaryR(retVal))
1992 goto end;
1993 error:
1994 OT_retObj_SET_Error
1995 end:
1997}
#define ReadBIN_doc
#define MqReadBIN(...)

◆ pymqmsgque_MqContextC_ReadBinaryR()

static OT_ProcRet pymqmsgque_MqContextC_ReadBinaryR ( MqContextC_ARGS )
static

Python: binary ctx.ReadBinaryR() C-API
read a MkBinaryR from the read-data-package

Definition at line 2015 of file MqContextC_py.c.

2015 {
2017 OT_SETUP_NOARG(ReadBinaryR_doc)
2018 OT_CHECK_NOARGS
2019 MkBinaryR val_out;
2020 MkErrorC_Check(hdl,MqReadBinaryR (hdl, &val_out));
2021 MkBinaryR retVal = val_out;
2022 OT_retObj_SET(OT_GET__ME_REF_MkBinaryR(retVal))
2023 goto end;
2024 error:
2025 OT_retObj_SET_Error
2026 end:
2028}
#define ReadBinaryR_doc
#define MqReadBinaryR(...)

◆ pymqmsgque_MqContextC_ReadBOL()

static OT_ProcRet pymqmsgque_MqContextC_ReadBOL ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadBOL C-API
read a PRIMITIVE TYPE from the read-data-package

Definition at line 2000 of file MqContextC_py.c.

2000 {
2002 OT_SETUP_NOARG(ReadBOL_doc)
2003 OT_CHECK_NOARGS
2004 MK_BOL val_out;
2005 MkErrorC_Check(hdl,MqReadBOL (hdl, &val_out));
2006 OT_retObj_SET_BOL(val_out == 1)
2007 goto end;
2008 error:
2009 OT_retObj_SET_Error
2010 end:
2012}
#define ReadBOL_doc
unsigned char MK_BOL
#define MqReadBOL(...)

◆ pymqmsgque_MqContextC_ReadBUF()

static OT_ProcRet pymqmsgque_MqContextC_ReadBUF ( MqContextC_ARGS )
static

Python: MkBufferC ctx.ReadBUF() C-API
get a temporary MkBufferC from the read-data-package

Definition at line 1967 of file MqContextC_py.c.

1967 {
1969 OT_SETUP_NOARG(ReadBUF_doc)
1970 OT_CHECK_NOARGS
1971 MK_BUF val_out;
1972 MkErrorC_Check(hdl,MqReadBUF (hdl, &val_out));
1973 OT_retObj_SET_BUF(val_out)
1974 goto end;
1975 error:
1976 OT_retObj_SET_Error
1977 end:
1979}
#define ReadBUF_doc
#define MqReadBUF(...)

◆ pymqmsgque_MqContextC_ReadDBL()

static OT_ProcRet pymqmsgque_MqContextC_ReadDBL ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadDBL C-API
read a PRIMITIVE TYPE from the read-data-package

Definition at line 2031 of file MqContextC_py.c.

2031 {
2033 OT_SETUP_NOARG(ReadDBL_doc)
2034 OT_CHECK_NOARGS
2035 MK_DBL val_out;
2036 MkErrorC_Check(hdl,MqReadDBL (hdl, &val_out));
2037 OT_retObj_SET_DBL(val_out)
2038 goto end;
2039 error:
2040 OT_retObj_SET_Error
2041 end:
2043}
#define ReadDBL_doc
double MK_DBL
#define MqReadDBL(...)

◆ pymqmsgque_MqContextC_ReadFLT()

static OT_ProcRet pymqmsgque_MqContextC_ReadFLT ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadFLT C-API
read a PRIMITIVE TYPE from the read-data-package

Definition at line 2046 of file MqContextC_py.c.

2046 {
2048 OT_SETUP_NOARG(ReadFLT_doc)
2049 OT_CHECK_NOARGS
2050 MK_FLT val_out;
2051 MkErrorC_Check(hdl,MqReadFLT (hdl, &val_out));
2052 OT_retObj_SET_FLT(val_out)
2053 goto end;
2054 error:
2055 OT_retObj_SET_Error
2056 end:
2058}
#define ReadFLT_doc
float MK_FLT
#define MqReadFLT(...)

◆ pymqmsgque_MqContextC_ReadHDL()

static OT_ProcRet pymqmsgque_MqContextC_ReadHDL ( MqContextC_ARGS )
static

Python: MK_HDL ctx.ReadHDL() C-API
read the handle from the read-data-package

Definition at line 2061 of file MqContextC_py.c.

2061 {
2063 OT_SETUP_NOARG(ReadHDL_doc)
2064 OT_CHECK_NOARGS
2065 MK_HDL val_out;
2066 MkErrorC_Check(hdl,MqReadHDL (hdl, &val_out));
2067 OT_retObj_SET_HDL(val_out)
2068 goto end;
2069 error:
2070 OT_retObj_SET_Error
2071 end:
2073}
#define ReadHDL_doc
int32_t MK_HDL
#define MqReadHDL(...)

◆ pymqmsgque_MqContextC_ReadI16()

static OT_ProcRet pymqmsgque_MqContextC_ReadI16 ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadI16 C-API
read a PRIMITIVE TYPE from the read-data-package

Definition at line 2076 of file MqContextC_py.c.

2076 {
2078 OT_SETUP_NOARG(ReadI16_doc)
2079 OT_CHECK_NOARGS
2080 MK_I16 val_out;
2081 MkErrorC_Check(hdl,MqReadI16 (hdl, &val_out));
2082 OT_retObj_SET_I16(val_out)
2083 goto end;
2084 error:
2085 OT_retObj_SET_Error
2086 end:
2088}
#define ReadI16_doc
signed short int MK_I16
#define MqReadI16(...)

◆ pymqmsgque_MqContextC_ReadI32()

static OT_ProcRet pymqmsgque_MqContextC_ReadI32 ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadI32 C-API
read a PRIMITIVE TYPE from the read-data-package

Definition at line 2091 of file MqContextC_py.c.

2091 {
2093 OT_SETUP_NOARG(ReadI32_doc)
2094 OT_CHECK_NOARGS
2095 MK_I32 val_out;
2096 MkErrorC_Check(hdl,MqReadI32 (hdl, &val_out));
2097 OT_retObj_SET_I32(val_out)
2098 goto end;
2099 error:
2100 OT_retObj_SET_Error
2101 end:
2103}
#define ReadI32_doc
signed int MK_I32
#define MqReadI32(...)

◆ pymqmsgque_MqContextC_ReadI64()

static OT_ProcRet pymqmsgque_MqContextC_ReadI64 ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadI64 C-API
read a PRIMITIVE TYPE from the read-data-package

Definition at line 2106 of file MqContextC_py.c.

2106 {
2108 OT_SETUP_NOARG(ReadI64_doc)
2109 OT_CHECK_NOARGS
2110 MK_I64 val_out;
2111 MkErrorC_Check(hdl,MqReadI64 (hdl, &val_out));
2112 OT_retObj_SET_I64(val_out)
2113 goto end;
2114 error:
2115 OT_retObj_SET_Error
2116 end:
2118}
#define ReadI64_doc
signed long long MK_I64
#define MqReadI64(...)

◆ pymqmsgque_MqContextC_ReadI8()

static OT_ProcRet pymqmsgque_MqContextC_ReadI8 ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadI8 C-API
read a PRIMITIVE TYPE from the read-data-package

Definition at line 2121 of file MqContextC_py.c.

2121 {
2123 OT_SETUP_NOARG(ReadI8_doc)
2124 OT_CHECK_NOARGS
2125 MK_I8 val_out;
2126 MkErrorC_Check(hdl,MqReadI8 (hdl, &val_out));
2127 OT_retObj_SET_I8(val_out)
2128 goto end;
2129 error:
2130 OT_retObj_SET_Error
2131 end:
2133}
#define ReadI8_doc
signed char MK_I8
#define MqReadI8(...)

◆ pymqmsgque_MqContextC_ReadLIST()

OT_ProcRet pymqmsgque_MqContextC_ReadLIST ( MqContextC_ARGS )

Python: [list...] ctx.ReadLIST() C-API
get all arguments as native list …

◆ pymqmsgque_MqContextC_ReadLONG()

static OT_ProcRet pymqmsgque_MqContextC_ReadLONG ( MqContextC_ARGS )
static

Python: long ctx.ReadLONG() C-API
read the long native object from the read-data-package

Definition at line 2139 of file MqContextC_py.c.

2139 {
2141 OT_SETUP_NOARG(ReadLONG_doc)
2142 OT_CHECK_NOARGS
2143 MK_LONG val_out;
2144 MkErrorC_Check(hdl,MqReadLONG (hdl, &val_out));
2145 OT_retObj_SET_LONG(val_out)
2146 goto end;
2147 error:
2148 OT_retObj_SET_Error
2149 end:
2151}
#define ReadLONG_doc
long MK_LONG
#define MqReadLONG(...)

◆ pymqmsgque_MqContextC_ReadNEXT()

OT_ProcRet pymqmsgque_MqContextC_ReadNEXT ( MqContextC_ARGS )

Python: obj ctx.ReadNEXT() C-API
get the next argument as native object …

◆ pymqmsgque_MqContextC_ReadSTR()

static OT_ProcRet pymqmsgque_MqContextC_ReadSTR ( MqContextC_ARGS )
static

Python: doc_mq_py_ReadSTR C-API
read a PRIMITIVE TYPE from the read-data-package

Definition at line 2157 of file MqContextC_py.c.

2157 {
2159 OT_SETUP_NOARG(ReadSTR_doc)
2160 OT_CHECK_NOARGS
2161 MK_STRN val_out;
2162 MkErrorC_Check(hdl,MqReadSTR (hdl, &val_out));
2163 OT_retObj_SET_STR(val_out)
2164 goto end;
2165 error:
2166 OT_retObj_SET_Error
2167 end:
2169}
#define ReadSTR_doc
const MK_STRB * MK_STRN
#define MqReadSTR(...)

◆ pymqmsgque_MqContextC_ReadStringR()

static OT_ProcRet pymqmsgque_MqContextC_ReadStringR ( MqContextC_ARGS )
static

Python: string ctx.ReadStringR() C-API
read a MkStringR from the read-data-package

Definition at line 2172 of file MqContextC_py.c.

2172 {
2174 OT_SETUP_NOARG(ReadStringR_doc)
2175 OT_CHECK_NOARGS
2176 MkStringR val_out;
2177 MkErrorC_Check(hdl,MqReadStringR (hdl, &val_out));
2178 MkStringR retVal = val_out;
2179 OT_retObj_SET(OT_GET__ME_REF_MkStringR(retVal))
2180 goto end;
2181 error:
2182 OT_retObj_SET_Error
2183 end:
2185}
#define ReadStringR_doc
#define MqReadStringR(...)