Loading...
Searching...
No Matches
MqFactoryC_Class_C_API

MqFactoryC - define the class … More...

+ Collaboration diagram for MqFactoryC_Class_C_API:

Topics

 MqFactoryC_Class_Define_C_API
 MqFactoryC - low level definition, access and cast …
 

Typedefs

typedef struct MqFactorySlibmqmsgque::MQ_FCT
 class-shortcut for struct MqFactoryS *, all shortcut using the XX_YYY syntax (only for public API) …
 
typedef const struct MqFactorySlibmqmsgque::MQ_FCTN
 class-shortcut for const struct MqFactoryS *, all const shortcut using the XX_YYYC syntax (only for public API) …
 
typedef struct MqFactoryS libmqmsgque::MQ_FCTR
 reference-shortcut for struct MqFactoryS, all shortcut using the XX_YYYR syntax (only for public API) …
 

MqFactoryC - Export - inline - interact with an external software

MK_HDL libmqmsgque::MqFactoryHandleGet_RT (MK_RT const mkrt, MQ_FCT const fct)
 Handle-Get-Slot - returns a export-hdl to the MqFactoryC useable for external storage
 
MQ_FCT libmqmsgque::MqFactoryHandleResolve_RT (MK_RT const mkrt, MK_HDL const netHdl)
 Handle-Resolve-Slot - return a MqFactoryC from netHdl or MK_NULL if invalid…
 
#define MqFactoryHandleResolve_e(netHdl)
 wrapper for MqFactoryHandleResolve with error-handline
 

MqFactoryC - Misc - function - unspecified functions to perform different tasks

MQ_FCT libmqmsgque::MqFactoryGetNull (void)
 Null-Slot - return a MqFactoryC typed NULL instance …
 

MqFactoryC - Introspection - inline - access to all instances created by class starting with the last one

MQ_FCT libmqmsgque::MqFactoryInstances_RT (MK_RT_PARSER_ONLY)
 get head-instance from linked-list of MqFactoryS type …
 
MK_ATTR_HDL MQ_FCT libmqmsgque::MqFactoryNext (MQ_FCT const fct)
 get next instance from linked-list of MqFactoryS type
 
MK_ATTR_HDL MQ_FCT libmqmsgque::MqFactoryPrev (MQ_FCT const fct)
 get previous instance from linked-list of MqFactoryS type
 

MqFactoryC - Export - overload

#define MqFactoryHandleResolve_NULL(...)
 
#define MqFactoryHandleResolve(...)
 
#define MqFactoryHandleGet_NULL(...)
 
#define MqFactoryHandleGet(...)
 

MqFactoryC - Introspection - overload

#define MqFactoryInstances_NULL()
 
#define MqFactoryInstances()
 

Detailed Description

MqFactoryC - define the class …

Macro Definition Documentation

◆ MqFactoryHandleGet

#define MqFactoryHandleGet ( ...)
Value:
MqFactoryHandleGet_RT(MK_RT_CALL __VA_ARGS__)
#define MK_RT_CALL

Definition at line 975 of file msgque_overload_mq.h.

◆ MqFactoryHandleGet_NULL

#define MqFactoryHandleGet_NULL ( ...)
Value:
MqFactoryHandleGet_RT(MK_RT_CALL_NULL __VA_ARGS__)
#define MK_RT_CALL_NULL

Definition at line 974 of file msgque_overload_mq.h.

◆ MqFactoryHandleResolve

#define MqFactoryHandleResolve ( ...)
Value:
MqFactoryHandleResolve_RT(MK_RT_CALL __VA_ARGS__)

Definition at line 971 of file msgque_overload_mq.h.

◆ MqFactoryHandleResolve_e

#define MqFactoryHandleResolve_e ( netHdl)
Value:
({ \
MK_HDL tmpHdl=netHdl; \
MQ_FCT tmp; \
if (tmpHdl==0) { \
tmp=NULL; \
} else { \
tmp=MqFactoryHandleResolve(tmpHdl); \
if (tmp==NULL) { \
MkErrorSetC_1_NULL("ERROR: 'MqFactoryC' handle is 'NULL'"); \
goto error; \
}; \
}; \
tmp; \
})
#define MqFactoryHandleResolve(...)

wrapper for MqFactoryHandleResolve with error-handline

Parameters
[in]netHdlThe handle previously returned by MkObjectHandleGet.
Returns
Return an valid libmqmsgque::MQ_FCT or MK_NULL with an error set.
  • If netHdl is MK_NULL than MK_NULL is returned and the upper-code decide how to deal with it.
  • MqFactoryHandleResolve return an valid libmqmsgque::MQ_FCT or MK_NULL if the netHdl is invalid or the underlying object has already been deleted.
    • If a MK_NULL is returned than an error-message is created and a jump to the label error is done.
    • If a libmqmsgque::MQ_FCT is returned than the netHdl is valid.

Definition at line 3275 of file LibMqMsgque_mq.h.

3275#define MqFactoryHandleResolve_e(netHdl) ({ \
3276 MK_HDL tmpHdl=netHdl; \
3277 MQ_FCT tmp; \
3278 if (tmpHdl==0) { \
3279 tmp=NULL; \
3280 } else { \
3281 tmp=MqFactoryHandleResolve(tmpHdl); \
3282 if (tmp==NULL) { \
3283 MkErrorSetC_1_NULL("ERROR: 'MqFactoryC' handle is 'NULL'"); \
3284 goto error; \
3285 }; \
3286 }; \
3287 tmp; \
3288})

◆ MqFactoryHandleResolve_NULL

#define MqFactoryHandleResolve_NULL ( ...)
Value:
MqFactoryHandleResolve_RT(MK_RT_CALL_NULL __VA_ARGS__)

Definition at line 970 of file msgque_overload_mq.h.

◆ MqFactoryInstances

#define MqFactoryInstances ( )
Value:
MqFactoryInstances_RT(MK_RT_CALL_ONLY)
#define MK_RT_CALL_ONLY

Definition at line 986 of file msgque_overload_mq.h.

◆ MqFactoryInstances_NULL

#define MqFactoryInstances_NULL ( )
Value:
MqFactoryInstances_RT(MK_RT_CALL_NULL_ONLY)
#define MK_RT_CALL_NULL_ONLY

Definition at line 985 of file msgque_overload_mq.h.

Typedef Documentation

◆ MQ_FCT

class-shortcut for struct MqFactoryS *, all shortcut using the XX_YYY syntax (only for public API) …

Definition at line 549 of file LibMqMsgque_mq.h.

◆ MQ_FCTN

typedef const struct MqFactoryS* libmqmsgque::MQ_FCTN

class-shortcut for const struct MqFactoryS *, all const shortcut using the XX_YYYC syntax (only for public API) …

Definition at line 552 of file LibMqMsgque_mq.h.

◆ MQ_FCTR

reference-shortcut for struct MqFactoryS, all shortcut using the XX_YYYR syntax (only for public API) …

Definition at line 555 of file LibMqMsgque_mq.h.

Function Documentation

◆ MqFactoryGetNull()

MQ_FCT libmqmsgque::MqFactoryGetNull ( void )
inline

Null-Slot - return a MqFactoryC typed NULL instance …

Definition at line 3299 of file LibMqMsgque_mq.h.

3299 {
3300 return (MQ_FCT)MK_NULL;
3301 }
#define MK_NULL
+ Here is the caller graph for this function:

◆ MqFactoryHandleGet_RT()

MK_HDL libmqmsgque::MqFactoryHandleGet_RT ( MK_RT const mkrt,
MQ_FCT const fct )
inline

Handle-Get-Slot - returns a export-hdl to the MqFactoryC useable for external storage

The export-hdl is a reference to an instance that can be stored in software and converted back into an instance using the MqFactoryHandleResolve.

The export-hdl is only valid until the Programming-Language-Micro-Kernel (PLMK) ends.

example: The export-hdl is used in rpc to identify an object across the network.

Parameters
[in]mkrtthe MkRuntimeS instance to work on - the runtime argument, used by MK_RT_CALL (C-only)
[in]fctthe MqFactoryS instance to work on
Returns
the required export-hdl

Definition at line 3242 of file LibMqMsgque_mq.h.

3245 {
3247 return MkObjectHandleGet(MkOBJ(fct));
#define MkObjectHandleGet(...)
#define MkOBJ(x)
#define MK_RT_ATTR_HDL_CHECK(x)
#define MK_RT_ATTR_RUNTIME
#define MK_RT_ATTR_HDL

◆ MqFactoryHandleResolve_RT()

MQ_FCT libmqmsgque::MqFactoryHandleResolve_RT ( MK_RT const mkrt,
MK_HDL const netHdl )
inline

Handle-Resolve-Slot - return a MqFactoryC from netHdl or MK_NULL if invalid…

The MqFactoryHandleResolve undo the MqFactoryHandleGet and is intended to export a unique identifer into external code not belonging to the Programming-Language-Micro-Kernel (PLMK).

Parameters
[in]mkrtthe MkRuntimeS instance to work on - the runtime argument, used by MK_RT_CALL (C-only)
[in]netHdlhandle former exported with MqFactoryHandleGet
Returns
the required handle or MK_NULL if netHdl is invalid

Definition at line 3259 of file LibMqMsgque_mq.h.

3262 {
3263 return MqFct(MkObjectHandleResolve(netHdl));
#define MkObjectHandleResolve(...)
MQ_FCT MqFct(MK_MNG mng)
cast a unknown-object into an MqFactoryS pointer or NULL if not possible

◆ MqFactoryInstances_RT()

MQ_FCT libmqmsgque::MqFactoryInstances_RT ( MK_RT_PARSER_ONLY )
inline

get head-instance from linked-list of MqFactoryS type …

The head-instance is the last instance created.

Definition at line 9633 of file LibMqMsgque_mq.h.

9633 {
9635 return (MQ_FCT)MqFactoryC_TT->instances;
9636}
#define MqRtSetup_NULL_RT
#define MqFactoryC_TT
class as MkTypeS-class-type, useable in a class-macro as: class##_TT …
+ Here is the caller graph for this function:

◆ MqFactoryNext()

MK_ATTR_HDL MQ_FCT libmqmsgque::MqFactoryNext ( MQ_FCT const fct)
inline

get next instance from linked-list of MqFactoryS type

Definition at line 9640 of file LibMqMsgque_mq.h.

9640 {
9641 MK_ATTR_HDL_CHECK(fct);
9642 return (MQ_FCT)MqFactoryC_X2obj(fct)->obj_protect.next;
9643}
#define MqFactoryC_X2obj(x)
+ Here is the caller graph for this function:

◆ MqFactoryPrev()

MK_ATTR_HDL MQ_FCT libmqmsgque::MqFactoryPrev ( MQ_FCT const fct)
inline

get previous instance from linked-list of MqFactoryS type

Definition at line 9647 of file LibMqMsgque_mq.h.

9647 {
9648 MK_ATTR_HDL_CHECK(fct);
9649 return (MQ_FCT)MqFactoryC_X2obj(fct)->obj_protect.prev;
9650}
+ Here is the caller graph for this function: