|
ZOO-Project
|
service_callback.c File Reference
#include <pthread.h>#include <libxml/tree.h>#include <libxml/parser.h>#include <libxml/xpath.h>#include <libxml/xpathInternals.h>#include <libxslt/xslt.h>#include <libxslt/xsltInternals.h>#include <libxslt/transform.h>#include <libxslt/xsltutils.h>#include "service_callback.h"#include "service_json.h"#include "sqlapi.h"#include <ulinet.h>Data Structures | |
| struct | local_params |
| Parameter definition to be used for sending parameters to a thread. More... | |
Functions | |
| bool | isProhibited (maps *conf, const char *serviceName) |
| Check if a service name is prohibited, meaning that the Kernel doesn't have to invoke the callback for this specific service. More... | |
| void * | _invokeBasicCallback (void *args) |
| Practically invoke the callback, meaning sending the HTTP POST request. More... | |
| bool | invokeBasicCallback (maps *conf, int state) |
| Invoke the callback in case there is a [subscriber] section containing one or more url parameter. More... | |
| void | cleanupCallbackThreads () |
| Wait for the threads to end then, clean used memory. More... | |
Variables | |
| int | nbThreads =0 |
| Number of threads. More... | |
| int | cStep =0 |
| Current step. More... | |
| int | maxProgress =0 |
| Maximum value of PercentCompleted. More... | |
| int | isOngoing =0 |
| Is there any ongoing HTTP request. More... | |
| pthread_t * | myThreads =NULL |
| Threads array. More... | |
| bool | steps [7][2] |
| Steps array. More... | |
| local_params ** | local_arguments |
| Arguments array to give to the _invokeCallback thread's function. More... | |
Data Structure Documentation
| struct local_params |
Function Documentation
| void* _invokeBasicCallback | ( | void * | args | ) |
Practically invoke the callback, meaning sending the HTTP POST request.
- Parameters
-
args local_params containing all the variables required
| void cleanupCallbackThreads | ( | ) |
Wait for the threads to end then, clean used memory.
| bool invokeBasicCallback | ( | maps * | conf, |
| int | state | ||
| ) |
Invoke the callback in case there is a [subscriber] section containing one or more url parameter.
- Parameters
-
conf the maps containing the main configuration file definitions state the service state SERVICE_SUCCEEDED / STARTED / FAILED
- Returns
- bool true in case of success, false in other cases
| bool isProhibited | ( | maps * | conf, |
| const char * | serviceName | ||
| ) |
Check if a service name is prohibited, meaning that the Kernel doesn't have to invoke the callback for this specific service.
- Parameters
-
conf the main configuration file maps serviceName the serviceName
- Returns
- a bool true if the service is prohibited, false in other case
Variable Documentation
| int cStep =0 |
Current step.
| int isOngoing =0 |
Is there any ongoing HTTP request.
| local_params** local_arguments |
Arguments array to give to the _invokeCallback thread's function.
| int maxProgress =0 |
Maximum value of PercentCompleted.
| pthread_t* myThreads =NULL |
Threads array.
| int nbThreads =0 |
Number of threads.
| bool steps[7][2] |
Initial value:
={
{false,false},
{false,false},
{false,false},
{false,false},
{false,false},
{false,false},
{false,false}
}
Steps array.
Generated on Fri Sep 18 2026 19:00:02 for ZOO-Project by
1.8.9.1














