:orphan: .. index:: pair: group; Agent job control .. _doxid-group__tapi__job: Agent job control ================= .. toctree:: :hidden: group_tapi_cfg_job.rst group_tapi_job_factory_cfg.rst group_tapi_job_opt.rst group_ta_job.rst group_tapi_job_factory_rpc.rst group_tapi_job_methods.rst group_tapi_job_internal.rst enum_tapi_job_exec_param_type.rst enum_tapi_job_sched_param_type.rst enum_tapi_job_status_type_t.rst enum_tapi_job_wrapper_priority_t.rst struct_tapi_job_buffer_t.rst struct_tapi_job_exec_affinity_param.rst struct_tapi_job_exec_param.rst struct_tapi_job_exec_priority_param.rst struct_tapi_job_exec_workdir_param.rst struct_tapi_job_simple_desc_t.rst struct_tapi_job_simple_filter_t.rst struct_tapi_job_status_t.rst Overview ~~~~~~~~ API to manage subordinate jobs at the agent side :ref:`More...` | :ref:`Configurator API for Agent job control (tapi_cfg_job)` | :ref:`Configurator job factory control (tapi_job_factory_cfg)` | :ref:`Helper functions for handling options` | :ref:`convenience macros for option` | :ref:`functions for argument formatting` | :ref:`Library for Agent job control on agent side (ta_job)` | :ref:`RPC server job factory control (tapi_job_factory_rpc)` | :ref:`TAPI Job Methods (tapi_job_methods)` | :ref:`TAPI Job internal functions (tapi_job_internal)` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`tapi_job_factory_t` :ref:`tapi_job_factory_t`; typedef struct :ref:`tapi_job_t` :ref:`tapi_job_t`; typedef struct :ref:`tapi_job_wrapper_t` :ref:`tapi_job_wrapper_t`; typedef struct :ref:`tapi_job_channel_t` :ref:`tapi_job_channel_t`; typedef :ref:`tapi_job_channel_t`* :ref:`tapi_job_channel_set_t`[]; typedef struct :ref:`tapi_job_simple_filter_t` :ref:`tapi_job_simple_filter_t`; typedef struct :ref:`tapi_job_simple_desc_t` :ref:`tapi_job_simple_desc_t`; typedef struct :ref:`tapi_job_status_t` :ref:`tapi_job_status_t`; typedef struct :ref:`tapi_job_buffer_t` :ref:`tapi_job_buffer_t`; typedef enum :ref:`tapi_job_exec_param_type` :ref:`tapi_job_exec_param_type`; typedef enum :ref:`tapi_job_sched_param_type` :ref:`tapi_job_sched_param_type`; typedef struct :ref:`tapi_job_exec_param` :ref:`tapi_job_exec_param`; typedef :ref:`tapi_job_exec_param` :ref:`tapi_job_sched_param`; typedef struct :ref:`tapi_job_exec_affinity_param` :ref:`tapi_job_exec_affinity_param`; typedef :ref:`tapi_job_exec_affinity_param` :ref:`tapi_job_sched_affinity_param`; typedef struct :ref:`tapi_job_exec_priority_param` :ref:`tapi_job_exec_priority_param`; typedef :ref:`tapi_job_exec_priority_param` :ref:`tapi_job_sched_priority_param`; typedef struct :ref:`tapi_job_exec_workdir_param` :ref:`tapi_job_exec_workdir_param`; // enums enum :ref:`tapi_job_exec_param_type`; enum :ref:`tapi_job_sched_param_type`; enum :ref:`tapi_job_status_type_t`; enum :ref:`tapi_job_wrapper_priority_t`; // structs struct :ref:`tapi_job_buffer_t`; struct :ref:`tapi_job_exec_affinity_param`; struct :ref:`tapi_job_exec_param`; struct :ref:`tapi_job_exec_priority_param`; struct :ref:`tapi_job_exec_workdir_param`; struct :ref:`tapi_job_simple_desc_t`; struct :ref:`tapi_job_simple_filter_t`; struct :ref:`tapi_job_status_t`; // global functions const char* :ref:`tapi_job_factory_ta`(const :ref:`tapi_job_factory_t`* factory); :ref:`te_errno` :ref:`tapi_job_factory_set_path`(:ref:`tapi_job_factory_t`* factory); void :ref:`tapi_job_factory_destroy`(:ref:`tapi_job_factory_t`* factory); :ref:`tapi_job_factory_t`* :ref:`tapi_job_get_factory`(:ref:`tapi_job_t`* job); :ref:`te_errno` :ref:`tapi_job_create`(:ref:`tapi_job_factory_t`* factory, const char* spawner, const char* program, const char** argv, const char** env, :ref:`tapi_job_t`** job); :ref:`te_errno` :ref:`tapi_job_create_named`(:ref:`tapi_job_factory_t`* factory, const char* name, const char* spawner, const char* program, const char** argv, const char** env, :ref:`tapi_job_t`** job); :ref:`te_errno` :ref:`tapi_job_recreate`(:ref:`tapi_job_factory_t`* factory, const void* identifier, :ref:`tapi_job_t`** job); :ref:`te_errno` :ref:`tapi_job_simple_create`(:ref:`tapi_job_factory_t`* factory, :ref:`tapi_job_simple_desc_t`* desc); :ref:`te_errno` :ref:`tapi_job_start`(:ref:`tapi_job_t`* job); :ref:`te_errno` :ref:`tapi_job_kill`(:ref:`tapi_job_t`* job, int signo); :ref:`te_errno` :ref:`tapi_job_killpg`(:ref:`tapi_job_t`* job, int signo); unsigned int :ref:`tapi_job_get_timeout`(void); :ref:`te_errno` :ref:`tapi_job_wait`(:ref:`tapi_job_t`* job, int timeout_ms, :ref:`tapi_job_status_t`* status); bool :ref:`tapi_job_is_running`(:ref:`tapi_job_t`* job); :ref:`te_errno` :ref:`tapi_job_alloc_input_channels`(:ref:`tapi_job_t`* job, unsigned int n_channels, :ref:`tapi_job_channel_t`* channels[n_channels]); :ref:`te_errno` :ref:`tapi_job_alloc_output_channels`(:ref:`tapi_job_t`* job, unsigned int n_channels, :ref:`tapi_job_channel_t`* channels[n_channels]); :ref:`te_errno` :ref:`tapi_job_dealloc_channels`(:ref:`tapi_job_channel_set_t` channels); :ref:`te_errno` :ref:`tapi_job_attach_filter`(:ref:`tapi_job_channel_set_t` channels, const char* filter_name, bool readable, :ref:`te_log_level` log_level, :ref:`tapi_job_channel_t`** filter); :ref:`te_errno` :ref:`tapi_job_attach_simple_filter`(const :ref:`tapi_job_simple_desc_t`* desc, :ref:`tapi_job_simple_filter_t`* filter); :ref:`te_errno` :ref:`tapi_job_filter_add_regexp`(:ref:`tapi_job_channel_t`* filter, const char* re, unsigned int extract); :ref:`te_errno` :ref:`tapi_job_filter_add_channels`(:ref:`tapi_job_channel_t`* filter, :ref:`tapi_job_channel_set_t` channels); :ref:`te_errno` :ref:`tapi_job_filter_remove_channels`(:ref:`tapi_job_channel_t`* filter, :ref:`tapi_job_channel_set_t` channels); :ref:`te_errno` :ref:`tapi_job_send`(:ref:`tapi_job_channel_t`* channel, const :ref:`te_string`* str); void :ref:`tapi_job_simple_send`(:ref:`tapi_job_channel_t`* channel, const :ref:`te_string`* str); :ref:`te_errno` :ref:`tapi_job_poll`(const :ref:`tapi_job_channel_set_t` wait_set, int timeout_ms); void :ref:`tapi_job_simple_poll`(const :ref:`tapi_job_channel_set_t` wait_set, int timeout_ms); :ref:`te_errno` :ref:`tapi_job_receive`(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms, :ref:`tapi_job_buffer_t`* buffer); :ref:`te_errno` :ref:`tapi_job_receive_last`(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms, :ref:`tapi_job_buffer_t`* buffer); :ref:`te_errno` :ref:`tapi_job_receive_many`(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms, :ref:`tapi_job_buffer_t`** buffers, unsigned int* count); void :ref:`tapi_job_buffers_free`(:ref:`tapi_job_buffer_t`* buffers, unsigned int count); bool :ref:`tapi_job_filters_have_data`(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms); void :ref:`tapi_job_simple_receive`(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms, :ref:`tapi_job_buffer_t`* buffer); :ref:`te_errno` :ref:`tapi_job_receive_single`(:ref:`tapi_job_channel_t`* filter, :ref:`te_string`* val, int timeout_ms); :ref:`te_errno` :ref:`tapi_job_clear`(const :ref:`tapi_job_channel_set_t` filters); :ref:`te_errno` :ref:`tapi_job_stop`(:ref:`tapi_job_t`* job, int signo, int term_timeout_ms); :ref:`te_errno` :ref:`tapi_job_destroy`(:ref:`tapi_job_t`* job, int term_timeout_ms); :ref:`te_errno` :ref:`tapi_job_set_workdir`(:ref:`tapi_job_t`* job, const char* dir); :ref:`te_errno` :ref:`tapi_job_wrapper_add`(:ref:`tapi_job_t`* job, const char* tool, const char** argv, :ref:`tapi_job_wrapper_priority_t` priority, :ref:`tapi_job_wrapper_t`** wrap); :ref:`te_errno` :ref:`tapi_job_wrapper_delete`(:ref:`tapi_job_wrapper_t`* wrapper); :ref:`te_errno` :ref:`tapi_job_add_exec_param`(:ref:`tapi_job_t`* job, :ref:`tapi_job_exec_param`* exec_param); static :ref:`te_errno` :ref:`tapi_job_add_sched_param`(:ref:`tapi_job_t`* job, :ref:`tapi_job_exec_param`* exec_param); :ref:`te_errno` :ref:`tapi_job_set_autorestart`(:ref:`tapi_job_t`* job, unsigned int value); :ref:`te_errno` :ref:`tapi_job_get_autorestart`(:ref:`tapi_job_t`* job, unsigned int* value); void :ref:`tapi_job_set_tracing`(:ref:`tapi_job_t`* job, bool trace); // macros #define :ref:`TAPI_JOB_BUFFER_INIT` #define :ref:`TAPI_JOB_CHANNEL_SET`(...) #define :ref:`TAPI_JOB_CHECK_STATUS`(_status) #define :ref:`TAPI_JOB_SIMPLE_FILTERS`(...) .. _details-group__tapi__job: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ API to manage subordinate jobs at the agent side Typedefs -------- .. index:: pair: typedef; tapi_job_factory_t .. _doxid-group__tapi__job_1ga3379bed0890a0ea0073e2a55f85895cd: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_factory_t` tapi_job_factory_t An opaque type to represent factory that creates job instances .. index:: pair: typedef; tapi_job_t .. _doxid-group__tapi__job_1gac201e01acbab3a86a0f8d51b0d446aca: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_t` tapi_job_t An opaque type to represent job instances .. index:: pair: typedef; tapi_job_wrapper_t .. _doxid-group__tapi__job_1gaeea38892fa363ebce8773fdf1b7bba5d: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_wrapper_t` tapi_job_wrapper_t An opaque type to represent wrapper instances .. index:: pair: typedef; tapi_job_channel_t .. _doxid-group__tapi__job_1ga91bc512c5a63505cbb40c396039c84e0: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_channel_t` tapi_job_channel_t Job channel handle .. index:: pair: typedef; tapi_job_channel_set_t .. _doxid-group__tapi__job_1gadab1fbbc01455a8d500b7c9a2b2f5500: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef :ref:`tapi_job_channel_t`* tapi_job_channel_set_t[] Job channel set (a ``NULL`` terminated vector) .. index:: pair: typedef; tapi_job_simple_filter_t .. _doxid-group__tapi__job_1gad1591f9df5cad92183c37a6be90034fc: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_simple_filter_t` tapi_job_simple_filter_t A simplified description of an output filter. The caller is expected to fill the fields one is interested in and leave others ``NULL`` or ``0``. .. index:: pair: typedef; tapi_job_simple_desc_t .. _doxid-group__tapi__job_1ga50d10c004f92a24df09b9da62fbe28e3: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_simple_desc_t` tapi_job_simple_desc_t A simplified description of a job. The caller is expected to fill the fields one is interested in and leave others ``NULL``. .. index:: pair: typedef; tapi_job_status_t .. _doxid-group__tapi__job_1gaa9366c6acc7325d0bb3ead80a53db836: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_status_t` tapi_job_status_t A structure that represents completed job status .. index:: pair: typedef; tapi_job_buffer_t .. _doxid-group__tapi__job_1ga5dc207ddbd66d4b7067bbb3938dfa387: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_buffer_t` tapi_job_buffer_t A structure to store messages read by :ref:`tapi_job_receive() ` or :ref:`tapi_job_receive_last() `. .. index:: pair: typedef; tapi_job_exec_param_type .. _doxid-group__tapi__job_1ga0193314c1d8fabbdf4550086a3f889bf: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef enum :ref:`tapi_job_exec_param_type` tapi_job_exec_param_type TAPI job kinds of process parameters .. index:: pair: typedef; tapi_job_sched_param_type .. _doxid-group__tapi__job_1gaa87af24acbd40c7c4e15e15429dab4e8: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef enum :ref:`tapi_job_sched_param_type` tapi_job_sched_param_type Use ``tapi_job_exec_param_type`` in the new code Deprecated .. index:: pair: typedef; tapi_job_exec_param .. _doxid-group__tapi__job_1gaf8a05834511c6c8073776e61a8807567: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_exec_param` tapi_job_exec_param TAPI job process parameter .. index:: pair: typedef; tapi_job_sched_param .. _doxid-group__tapi__job_1ga1199db08a9dfb5b7a5f9d404d7965804: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef :ref:`tapi_job_exec_param` tapi_job_sched_param Use ``:ref:`tapi_job_exec_param ``` in the new code Deprecated .. index:: pair: typedef; tapi_job_exec_affinity_param .. _doxid-group__tapi__job_1gad9804daac5e8c5de51f93ff5c9a38387: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_exec_affinity_param` tapi_job_exec_affinity_param Data specific for CPU affinity process type .. index:: pair: typedef; tapi_job_sched_affinity_param .. _doxid-group__tapi__job_1ga8c2f263d3edba80c33471e5b7373d890: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef :ref:`tapi_job_exec_affinity_param` tapi_job_sched_affinity_param Use ``:ref:`tapi_job_exec_affinity_param ``` in the new code Deprecated .. index:: pair: typedef; tapi_job_exec_priority_param .. _doxid-group__tapi__job_1gae1af7eacffd51f1b84850409c6d5a030: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_exec_priority_param` tapi_job_exec_priority_param Data specific for priority process type .. index:: pair: typedef; tapi_job_sched_priority_param .. _doxid-group__tapi__job_1gac1e2e78b1eabf1ce2f329d82e9d1ec9c: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef :ref:`tapi_job_exec_priority_param` tapi_job_sched_priority_param Use ``:ref:`tapi_job_exec_priority_param ``` in the new code Deprecated .. index:: pair: typedef; tapi_job_exec_workdir_param .. _doxid-group__tapi__job_1ga1669e59abad7fb82e68e4d93bba2062c: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_job_exec_workdir_param` tapi_job_exec_workdir_param Data specific for workdir process type Global Functions ---------------- .. index:: pair: function; tapi_job_factory_ta .. _doxid-group__tapi__job_1gad99588a5a747d6bab181ece2eb611aa3: .. ref-code-block:: cpp :class: doxyrest-title-code-block const char* tapi_job_factory_ta(const :ref:`tapi_job_factory_t`* factory) Get name of the test agent that hosts job instances created by ``factory``. The returned pointer should not be used after factory destruction .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - factory - Job factory .. rubric:: Returns: Test Agent name (or ``NULL`` on failure) .. index:: pair: function; tapi_job_factory_set_path .. _doxid-group__tapi__job_1gaa619748ea615b3043b1b4dae19c0754f: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_factory_set_path(:ref:`tapi_job_factory_t`* factory) Set path in factory's environment to /agent:/env:PATH. The environment is inherited by created job if the environment is not specified in :ref:`tapi_job_create() `. This function supports only RPC factories Job TAPI does not automatically inherit the environment from /agent:env .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - factory - Job factory .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_factory_destroy .. _doxid-group__tapi__job_1ga3a3a9d05df39c2a6d656bcf4539fbc69: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_job_factory_destroy(:ref:`tapi_job_factory_t`* factory) Destroy a job factory .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - factory - Job factory .. index:: pair: function; tapi_job_get_factory .. _doxid-group__tapi__job_1ga9fd417f89a6ef51a0b094a2d52531227: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_job_factory_t`* tapi_job_get_factory(:ref:`tapi_job_t`* job) Get factory used to create the job. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle .. rubric:: Returns: Job factory handle or ``NULL`` if ``job`` is ``NULL`` .. index:: pair: function; tapi_job_create .. _doxid-group__tapi__job_1ga34f7f23fb8999808dad3763a53fe2df2: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_create(:ref:`tapi_job_factory_t`* factory, const char* spawner, const char* program, const char** argv, const char** env, :ref:`tapi_job_t`** job) Create a job controlled in the way specified by ``factory``. The job will be managed by ``spawner`` plugin. The created job is *not* started automatically, use :ref:`tapi_job_start() ` to actually run it. The first element of ``args``, by convention of exec family functions, should point to the filename associated with the file being executed. Unnamed jobs created by CFG factory are not supposed to live longer than one test, so they should be destroyed at the end of the test where they were created. Otherwise, trying to create an unnamed job by CFG factory in a subsequent test will lead to an error. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - factory - Job factory * - spawner - Spawner plugin name (may be ``NULL`` for the default plugin) * - program - Program path to run * - argv - Program arguments (last item is ``NULL``) * - env - Program environment (last item is ``NULL``). May be ``NULL`` to keep the current environment. * - job - Job handle .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_create_named .. _doxid-group__tapi__job_1ga43871b14ab178085fa7fc08d15366c8c: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_create_named(:ref:`tapi_job_factory_t`* factory, const char* name, const char* spawner, const char* program, const char** argv, const char** env, :ref:`tapi_job_t`** job) Same as :ref:`tapi_job_create() `, but allows to set a name for the job being created .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - factory - Job factory * - name - Name of the job. If CFG job factory is used, this parameter is mandatory. If RPC job factory is used, it should be ``NULL``. * - spawner - Spawner plugin name (may be ``NULL`` for the default plugin) * - program - Program path to run * - argv - Program arguments (last item is ``NULL``) * - env - Program environment (last item is ``NULL``). May be ``NULL`` to keep the current environment. * - job - Job handle .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_job_create ` .. index:: pair: function; tapi_job_recreate .. _doxid-group__tapi__job_1ga7b1eae1d9ec548a9dc9a226b51877c9a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_recreate(:ref:`tapi_job_factory_t`* factory, const void* identifier, :ref:`tapi_job_t`** job) Get handle of a job that was once created and hasn't been destroyed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - factory - Job factory that was used when the job was first created * - identifier - Data that allows to identify the job. For jobs created by CFG factory it must be a C-string with a name that was assigned to the job when it was first create. * - job - Location where to put the job handle * - TE_ENOENT - The job with the ``identifier`` was never created .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_simple_create .. _doxid-group__tapi__job_1ga88835562c17eccc9b97dfe760a6d80e1: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_simple_create(:ref:`tapi_job_factory_t`* factory, :ref:`tapi_job_simple_desc_t`* desc) Create a job based on a description .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - factory - Job factory * - desc - Job description * - TE_EALREADY - A job associated with ``desc`` already created .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_start .. _doxid-group__tapi__job_1ga93717450d7b8e8ad4909b1b92a43eede: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_start(:ref:`tapi_job_t`* job) Start a job For autorestart jobs this function should be called only once. The following job executions will be done by the autorestart subsystem. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle .. index:: pair: function; tapi_job_kill .. _doxid-group__tapi__job_1ga4866f31d19c4f2d6900d6ad8d3a65762: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_kill(:ref:`tapi_job_t`* job, int signo) Send a signal to the job .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - signo - Signal number .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_killpg .. _doxid-group__tapi__job_1gab9d32f402c99d84cd303e342b7bc7bc6: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_killpg(:ref:`tapi_job_t`* job, int signo) Send a signal to the proccess group .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - signo - Signal number .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_get_timeout .. _doxid-group__tapi__job_1gac70c062266d7e079b31b51b3480afcf8: .. ref-code-block:: cpp :class: doxyrest-title-code-block unsigned int tapi_job_get_timeout(void) Get timeout of tapi_job function that is set when negative timeout is passed to the function .. rubric:: Returns: Timeout in millisecond .. index:: pair: function; tapi_job_wait .. _doxid-group__tapi__job_1ga89d62b1005940fae99fdbca4aad6b8cb: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_wait(:ref:`tapi_job_t`* job, int timeout_ms, :ref:`tapi_job_status_t`* status) Wait for the job completion (or check its status if ``timeout`` is zero) For jobs created by some factories it's possible that this function will return zero if the job was never started .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - timeout_ms - Timeout in ms. Meaning of negative timeout depends on the factory type that was used to create the job. See :ref:`rpc_job_wait() ` and :ref:`cfg_job_wait() ` for details. * - status - Exit status (may be ``NULL``) * - TE_EINPROGRESS - Job is still running. For autorestart jobs, this means that the autorestart subsystem is working with the job and it will be restarted when needed. * - TE_ECHILD - Job was never started .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_job_set_autorestart ` .. index:: pair: function; tapi_job_is_running .. _doxid-group__tapi__job_1ga84a928d1538c05487e0fedc2d6184db7: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool tapi_job_is_running(:ref:`tapi_job_t`* job) Check whether a job is running .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - TEST_FAIL - .. rubric:: Returns: ``true`` if ``job`` is running .. index:: pair: function; tapi_job_alloc_input_channels .. _doxid-group__tapi__job_1gaceaa71729c23d0e1baf34803166b29ee: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_alloc_input_channels(:ref:`tapi_job_t`* job, unsigned int n_channels, :ref:`tapi_job_channel_t`* channels[n_channels]) Allocate ``n_channels`` input channels. The first channel is expected to be connected to the job's stdin; the wiring of others is spawner-dependant. This function supports only jobs created by RPC factory .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - n_channels - Number of channels * - channels - A vector of obtained channel handles .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_alloc_output_channels .. _doxid-group__tapi__job_1ga52a649c1109a892e0fe797c7ce71c8a8: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_alloc_output_channels(:ref:`tapi_job_t`* job, unsigned int n_channels, :ref:`tapi_job_channel_t`* channels[n_channels]) Allocate ``n_channels`` output channels. The first and the second output channels are expected to be connected to stdout and stderr resp., the wiring of others is spawner-dependant. This function supports only jobs created by RPC factory The implementation need not support any other operations on primary output channels other than attaching and removing filters to/from them (see :ref:`tapi_job_attach_filter() `, :ref:`tapi_job_filter_add_channels() `, and :ref:`tapi_job_filter_remove_channels() `) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - n_channels - Number of channels * - channels - A vector of obtained channel handles .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_dealloc_channels .. _doxid-group__tapi__job_1ga8b548f1766e47c6752983bf0e03c12ab: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_dealloc_channels(:ref:`tapi_job_channel_set_t` channels) Deallocate primary channels. The channels are freed by the function. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - channels - Channels to be deallocated. .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_attach_filter .. _doxid-group__tapi__job_1gaf2c5391b80412c34c8407106ee211f04: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_attach_filter(:ref:`tapi_job_channel_set_t` channels, const char* filter_name, bool readable, :ref:`te_log_level` log_level, :ref:`tapi_job_channel_t`** filter) Create a secondary output channel applying a filter to an existing channel. The implementation is only required to support filter channels over primary channels, so filter chaining may not be supported. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - channels - Output channels to attach the filter to. * - filter_name - Filter name (may be ``NULL``, then the default filter is used) \* * - readable - If ``true``, the output of the filter is sent to the test, that is, it can be read with :ref:`tapi_job_receive() `; otherwise, it is discarded, possibly after being logged. * - log_level - If non-zero, the output of the filter is logged with a given log level * - filter - Filter channel (may be ``NULL`` for trivial filters) * - TE_EPERM - Some of ``channels`` are input channels * - TE_EINVAL - Some of ``channels`` are filter output channels if the implementaion does not support filters over filters. * - TE_EXDEV - ``channels`` are on different RPC servers .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_attach_simple_filter .. _doxid-group__tapi__job_1ga5997ee5c173b84b7c08913d958ba7ae8: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_attach_simple_filter(const :ref:`tapi_job_simple_desc_t`* desc, :ref:`tapi_job_simple_filter_t`* filter) Attach a simple filter to a job created by :ref:`tapi_job_simple_create() ` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - desc - Job description (it must have *job_loc*, *stdin_loc* and *stderr_loc* filled in) * - filter - Filter to attach * - TE_ENOTCONN - :ref:`tapi_job_simple_create() ` has not been called on ``desc`` .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_filter_add_regexp .. _doxid-group__tapi__job_1ga0f7faccf73e746d17dff3c8ccdfe252b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_filter_add_regexp(:ref:`tapi_job_channel_t`* filter, const char* re, unsigned int extract) Add a regular expression for filter Multi-segment matching is performed. Thus, PCRE_MULTILINE option is set. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filter - Filter handle * - re - PCRE-style regular expression to match * - extract - A substring to extract as an output of the filter (0 meaning the whole match) .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_filter_add_channels .. _doxid-group__tapi__job_1ga71f565b7f174d3b230626d6731283b73: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_filter_add_channels(:ref:`tapi_job_channel_t`* filter, :ref:`tapi_job_channel_set_t` channels) Attach an existing filter to additional output channels .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filter - Filter to attach * - channels - Output channels to attach the filter to .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_filter_remove_channels .. _doxid-group__tapi__job_1ga6ad6fac22dee907eb7778a3b9cc6606d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_filter_remove_channels(:ref:`tapi_job_channel_t`* filter, :ref:`tapi_job_channel_set_t` channels) Remove filter from specified output channels. For instance, if the filter is attached to stdout and stderr and the function is called with only stdout specified, the filter will continue working with stderr. Either the function succeeds and the filter is removed from all specified channels, or the function fails and the filter is not removed from any channel. If the filter is removed from every channel it was attached to, all associated resources including the memory for tapi_job_channel_t structure will be freed, so ``filter`` variable must not be used again. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filter - Filter to remove * - channels - Channels from which to remove the filter .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_send .. _doxid-group__tapi__job_1ga1b145b84d05a6c2baee0b0da67100f7b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_send(:ref:`tapi_job_channel_t`* channel, const :ref:`te_string`* str) Send data to a job input channel. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - channel - Output channel handle * - str - A pointer to string buffer * - TE_EPERM - if ``channel`` is not an input channel .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_simple_send .. _doxid-group__tapi__job_1ga34bb447149fd960999159def515362d9: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_job_simple_send(:ref:`tapi_job_channel_t`* channel, const :ref:`te_string`* str) The same as :ref:`tapi_job_send() `, but fails the test if an error happens, instead of returning an error .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - channel - Input channel handle * - str - A pointer to string buffer * - TEST_FAIL - .. index:: pair: function; tapi_job_poll .. _doxid-group__tapi__job_1gaed514278ba0df6a86a19612330bd5577: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_poll(const :ref:`tapi_job_channel_set_t` wait_set, int timeout_ms) Poll the job's channels/filters for readiness. from ``wait_set`` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - wait_set - Set of channels to wait * - timeout_ms - Timeout in ms to wait (negative means :ref:`tapi_job_get_timeout() `) * - TE_EPERM - if some channels from ``wait_set`` are neither input channels nor pollable output channels * - TE_EXDEV - if channels from ``wait_set`` are from different RPC servers .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_simple_poll .. _doxid-group__tapi__job_1ga2451709d31f4840d53cf024c5445d117: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_job_simple_poll(const :ref:`tapi_job_channel_set_t` wait_set, int timeout_ms) The same as :ref:`tapi_job_poll() `, but fails the test if an error happens, instead of returning an error. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - wait_set - Set of channels to wait * - timeout_ms - Timeout in ms to wait (negative means :ref:`tapi_job_get_timeout() `) * - TEST_FAIL - .. index:: pair: function; tapi_job_receive .. _doxid-group__tapi__job_1ga3a58e482b9feb298d3cc74b6014de008: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_receive(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms, :ref:`tapi_job_buffer_t`* buffer) Read the next message from one of the available filters. The data being read are appended to *data* buffer. At most one message is read. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filters - Set of filters to read from. * - timeout_ms - Timeout to wait (negative means :ref:`tapi_job_get_timeout() `) * - buffer - Data buffer pointer. If ``NULL``, the message is silently discarded. * - TE_ETIMEDOUT - if there's no data available within ``timeout`` * - TE_EPERM - if some of the ``filters`` are input channels or primary output channels and the implementation does not support reading from them or unreadable output channels * - TE_EXDEV - if ``filters`` are on different RPC servers .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_receive_last .. _doxid-group__tapi__job_1ga7e476fc0e48fe2bf3359c470f40ae9ba: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_receive_last(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms, :ref:`tapi_job_buffer_t`* buffer) Read the last non-eos message (if there is one) from one of the available filters. If the only message contains eos, read it. The message is not removed from the queue, it can still be read with :ref:`tapi_job_receive() `. The data being read are appended to *data* buffer. At most one message is read. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filters - Set of filters to read from. * - timeout_ms - Timeout to wait (negative means :ref:`tapi_job_get_timeout() `) * - buffer - Data buffer pointer. If ``NULL``, the message is silently discarded. * - TE_ETIMEDOUT - if there's no data available within ``timeout`` * - TE_EPERM - if some of the ``filters`` are input channels or primary output channels and the implementation does not support reading from them or unreadable output channels * - TE_EXDEV - if ``filters`` are on different RPC servers .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_receive_many .. _doxid-group__tapi__job_1ga5a64ede50644a03fe80a6c9ff9a1ec2e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_receive_many(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms, :ref:`tapi_job_buffer_t`** buffers, unsigned int* count) Obtain multiple messages at once from the specified filters. This function may retrieve some messages and return error if attempt to read the next message failed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filters - Set of filters to read from * - timeout_ms - Timeout to wait (negative means :ref:`tapi_job_get_timeout() `) until some messages are available * - buffers - Where to save pointer to array of buffers with messages (should be released by caller with :ref:`tapi_job_buffers_free() `) * - count - On input, maximum number of messages to retrieve. If zero, all available messages will be retrieved. On output - number of actually retrieved messages .. rubric:: Returns: Status code. .. index:: pair: function; tapi_job_buffers_free .. _doxid-group__tapi__job_1gafe5a5c28e71d03f804871a5c53cd236e: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_job_buffers_free(:ref:`tapi_job_buffer_t`* buffers, unsigned int count) Release array of message buffers. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - buffers - Pointer to the array * - count - Number of buffers in the array .. index:: pair: function; tapi_job_filters_have_data .. _doxid-group__tapi__job_1gaa8a3d359cfc45efff7aed9f69bedd46b: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool tapi_job_filters_have_data(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms) Check if there is at least one non-eos message on one of the available filters. The message is not removed from the queue, it can still be read with :ref:`tapi_job_receive() `. The function is useful to check if a job produced some particular output. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filters - Set of filters to read from. * - timeout_ms - Timeout to wait (negative means :ref:`tapi_job_get_timeout() `) .. rubric:: Returns: ``true`` if there is a non-eos message .. index:: pair: function; tapi_job_simple_receive .. _doxid-group__tapi__job_1ga44ff800e8dd4d80d43f216baa31fca04: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_job_simple_receive(const :ref:`tapi_job_channel_set_t` filters, int timeout_ms, :ref:`tapi_job_buffer_t`* buffer) The same as :ref:`tapi_job_receive() ` but fails the test if an error happens. Also, unlike :ref:`tapi_job_receive() `, the function resets the ``buffer`` contents. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filters - Set of filters to read from. * - timeout_ms - Timeout to wait (negative means :ref:`tapi_job_get_timeout() `) * - buffer - Data buffer pointer. If ``NULL``, the message is silently discarded. * - TEST_FAIL - .. index:: pair: function; tapi_job_receive_single .. _doxid-group__tapi__job_1ga5bce0f0ec8675463832f10325f63a607: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_receive_single(:ref:`tapi_job_channel_t`* filter, :ref:`te_string`* val, int timeout_ms) Get contents of a single message. This function will fail if there is more than one message. It is useful for filters looking for something unique in the output. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filter - From where to read the message * - val - Where to save the contents * - timeout_ms - Timeout to wait (negative means :ref:`tapi_job_get_timeout() `) .. rubric:: Returns: Status code. .. index:: pair: function; tapi_job_clear .. _doxid-group__tapi__job_1ga61e3e8d9219069296ee2eb2b73abf9d0: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_clear(const :ref:`tapi_job_channel_set_t` filters) Remove all pending messages from filters, they are lost completely. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filters - Set of filters to clear. * - TE_EPERM - if some of the ``filters`` are input channels or primary output channels and the implementation does not support reading from them or unreadable output channels * - TE_EXDEV - if ``filters`` are on different RPC servers .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_stop .. _doxid-group__tapi__job_1gaff4ba365f8b8d952db51df0179717f3d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_stop(:ref:`tapi_job_t`* job, int signo, int term_timeout_ms) Stop a job. It can be started over with :ref:`tapi_job_start() `. The function tries to terminate the job with the specified signal. If the signal fails to terminate the job, the function will send ``SIGKILL``. Parameters ``signo`` and ``term_timeout_ms`` are supported only for jobs created by RPC factory. Use ``-1`` to avoid warnings. For autorestart jobs this function will stop the job and prevent the autorestart subsystem from starting the job over .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - signo - Signal to be sent at first. If signo is ``SIGKILL``, it will be sent only once. * - term_timeout_ms - The timeout of graceful termination of a job, if it has been running. After the timeout expiration the job will be killed with ``SIGKILL``. (negative means default timeout) .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_job_set_autorestart ` .. index:: pair: function; tapi_job_destroy .. _doxid-group__tapi__job_1ga61c61e827b0bafe21cf5f48ee22fd0d6: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_destroy(:ref:`tapi_job_t`* job, int term_timeout_ms) Destroy the job instance. If the job has started, it is terminated as gracefully as possible. All resources of the instance are freed; all unread data on all filters are lost. Parameter ``term_timeout_ms`` is supported only for jobs created by RPC factory. Use ``-1`` to avoid warnings. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - term_timeout_ms - The timeout of graceful termination of a job, if it has been running. After the timeout expiration the job will be killed with SIGKILL. (negative means defult timeout) .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_set_workdir .. _doxid-group__tapi__job_1gad0307eb6e30a0698efac6d55595d696f: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_set_workdir(:ref:`tapi_job_t`* job, const char* dir) Set working directory for the specified job. If you don't need ``:ref:`tapi_job_exec_param ```, use this function. Otherwise use :ref:`tapi_job_add_exec_param() ` with ``:ref:`tapi_job_exec_workdir_param ```. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - dir - New working directory .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_wrapper_add .. _doxid-group__tapi__job_1gacd1b6a69bd5eb6364a27cc120fe21c52: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_wrapper_add(:ref:`tapi_job_t`* job, const char* tool, const char** argv, :ref:`tapi_job_wrapper_priority_t` priority, :ref:`tapi_job_wrapper_t`** wrap) Add a wrapper for the specified job. We can only add a wrapper to a job that hasn't started yet. This function supports only jobs created by RPC factory The wrapper must be added after the job is created. We can call this function several times. Wrappers will be added to the main tool from right to left according to the priority level. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - tool - Path to the wrapper tool. * - argv - Wrapper arguments (last item is ``NULL``) * - priority - Wrapper priority. * - wrap - Wrapper instance handle .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_wrapper_delete .. _doxid-group__tapi__job_1ga67e6506c77e5ba5790df8c551fb39dd9: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_wrapper_delete(:ref:`tapi_job_wrapper_t`* wrapper) Delete the wrapper instance handle. There is no necessity to delete wrappers before job destruction. All wrappers are removed automatically together with the job. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - wrapper - Wrapper instance handle .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_add_exec_param .. _doxid-group__tapi__job_1gacbe2e0c25e0b47b287c9ff5df5242849: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_add_exec_param(:ref:`tapi_job_t`* job, :ref:`tapi_job_exec_param`* exec_param) Add a process parameters for the specified job. This function supports only jobs created by RPC factory .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - exec_param - Array of process parameters. The last element must have the type TAPI_JOB_EXEC_END and data pointer to ``NULL``. .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_add_sched_param .. _doxid-group__tapi__job_1gaaf0f622215863e2ff8402416d6872d83: .. ref-code-block:: cpp :class: doxyrest-title-code-block static :ref:`te_errno` tapi_job_add_sched_param(:ref:`tapi_job_t`* job, :ref:`tapi_job_exec_param`* exec_param) Use :ref:`tapi_job_add_exec_param() ` in the new code Deprecated .. index:: pair: function; tapi_job_set_autorestart .. _doxid-group__tapi__job_1gaf550abdb7882b7d43c42d7b83dada56e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_set_autorestart(:ref:`tapi_job_t`* job, unsigned int value) Set autorestart timeout for the job. The value represents a frequency with which the autorestart subsystem will check whether the process stopped running (regardless of the reason) and restart it if it did. This function supports only jobs created by CFG factory For jobs created by CFG factory this function should be called before the job is started .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - value - Autorestart timeout in seconds or ``0`` to disable autorestart for the process. .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_get_autorestart .. _doxid-group__tapi__job_1ga5637d94a5232cdefa1c4631ccc2150fc: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_job_get_autorestart(:ref:`tapi_job_t`* job, unsigned int* value) Get autorestart timeout This function supports only jobs created by CFG factory .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle * - value - Autorestart timeout in seconds. If ``0``, the autorestart is disabled. .. rubric:: Returns: Status code .. index:: pair: function; tapi_job_set_tracing .. _doxid-group__tapi__job_1gae94105e53de1df3ba7e9ea6d5b3f49f7: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_job_set_tracing(:ref:`tapi_job_t`* job, bool trace) Control RPC calls tracing. This function supports only jobs created by RPC factory and has to be called after creation of the job. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - job - Job instance handle. * - trace - If ``true``, turns on the RPC calls logging, othervise turns it off, anyway error log still will be logged. Macros ------ .. index:: pair: define; TAPI_JOB_BUFFER_INIT .. _doxid-group__tapi__job_1gac0ac998096bcdca00d417a5f5e02d26f: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TAPI_JOB_BUFFER_INIT Static initializer for :ref:`tapi_job_buffer_t ` .. index:: pair: define; TAPI_JOB_CHANNEL_SET .. _doxid-group__tapi__job_1ga586da56d6075bfabacb9955541d3ee24: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TAPI_JOB_CHANNEL_SET(...) A convenience vector constructor to use with polling functions .. index:: pair: define; TAPI_JOB_CHECK_STATUS .. _doxid-group__tapi__job_1gaade8bc229ace1f33bde7f5e4c5f2e6f0: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TAPI_JOB_CHECK_STATUS(_status) Check if the status is a success status (i.e. the job exited successfully) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - _status - Job exit status .. index:: pair: define; TAPI_JOB_SIMPLE_FILTERS .. _doxid-group__tapi__job_1ga421b3ec3f761345b99d4b0d5e8595c68: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TAPI_JOB_SIMPLE_FILTERS(...) A helper to create vectors of job simple filter descriptions