1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* Generated by cbindgen */
/**
* A type alias for the C-style callback function pointer.
* Changed to pass (buf, len) instead of a null-terminated string for better performance.
*/
typedef void ;
/**
* Initializes the logging system to use a C-style callback for log messages.
*
* This function must be called before `ombrac_server_service_startup` if you wish to
* receive logs in a C-compatible way. It sets up a global logger that will
* forward all log records to the provided callback function.
*
* # Arguments
*
* * `callback` - A function pointer of type `LogCallback`. The callback receives
* a buffer pointer and length. The buffer is valid only during the callback call
* and must be copied if needed for later use.
*
* # Safety
*
* The provided `callback` function pointer must be valid and remain valid for
* the lifetime of the program. If a null pointer is passed, logging will be
* disabled.
*
* The callback must not modify the buffer and should not call back into Rust
* code that might trigger logging, as this could cause deadlocks.
*
* This function is protected against Rust panics crossing the FFI boundary.
*/
void ;
/**
* Initializes and starts the service with a given JSON configuration.
*
* This function sets up the asynchronous runtime, parses the configuration,
* and launches the main service. It must be called before any other service
* operations. The service must be shut down via `ombrac_server_service_shutdown` to ensure
* a clean exit.
*
* # Arguments
*
* * `config_json` - A pointer to a null-terminated UTF-8 string containing the
* service configuration in JSON format.
*
* # Returns
*
* * `0` on success.
* * `-1` on failure (e.g., invalid configuration, service already running, or
* runtime initialization failed).
*
* # Safety
*
* The caller must ensure that `config_json` is a valid pointer to a
* null-terminated C string. This function is not thread-safe and should not be
* called concurrently with `ombrac_server_service_shutdown`.
*
* This function is protected against Rust panics crossing the FFI boundary.
*/
int32_t ;
/**
* Shuts down the running service and releases all associated resources.
*
* This function will gracefully stop the service and terminate the asynchronous
* runtime. It is safe to call even if the service was not started or has
* already been stopped.
*
* # Returns
*
* * `0` on completion.
*
* # Safety
*
* This function is not thread-safe and should not be called concurrently with
* `ombrac_server_service_startup`.
*
* This function is protected against Rust panics crossing the FFI boundary.
*/
int32_t ;
/**
* Returns the version of the ombrac-server library.
*
* The returned string is a null-terminated UTF-8 string. The memory for this
* string is managed by the library and should not be freed by the caller.
*/
const char *;