mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
9d897b0951
This means changing headers, implementing a simple tap-like wrapper, and also splitting out the helpers into those which are linked with the api* tests (which can't use non-public tdb2 functions) and those linked with the run* tests (which can). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
#ifndef TDB2_TEST_EXTERNAL_AGENT_H
|
|
#define TDB2_TEST_EXTERNAL_AGENT_H
|
|
|
|
/* For locking tests, we need a different process to try things at
|
|
* various times. */
|
|
enum operation {
|
|
OPEN,
|
|
OPEN_WITH_HOOK,
|
|
FETCH,
|
|
STORE,
|
|
TRANSACTION_START,
|
|
TRANSACTION_COMMIT,
|
|
NEEDS_RECOVERY,
|
|
CHECK,
|
|
SEND_SIGNAL,
|
|
CLOSE,
|
|
};
|
|
|
|
/* Do this before doing any tdb stuff. Return handle, or -1. */
|
|
struct agent *prepare_external_agent(void);
|
|
|
|
enum agent_return {
|
|
SUCCESS,
|
|
WOULD_HAVE_BLOCKED,
|
|
AGENT_DIED,
|
|
FAILED, /* For fetch, or NEEDS_RECOVERY */
|
|
OTHER_FAILURE,
|
|
};
|
|
|
|
/* Ask the external agent to try to do an operation.
|
|
* name == tdb name for OPEN/OPEN_WITH_CLEAR_IF_FIRST,
|
|
* record name for FETCH/STORE (store stores name as data too)
|
|
*/
|
|
enum agent_return external_agent_operation(struct agent *handle,
|
|
enum operation op,
|
|
const char *name);
|
|
|
|
/* Hook into free() on tdb_data in external agent. */
|
|
extern void (*external_agent_free)(void *);
|
|
|
|
/* Mapping enum -> string. */
|
|
const char *agent_return_name(enum agent_return ret);
|
|
const char *operation_name(enum operation op);
|
|
|
|
void free_external_agent(struct agent *agent);
|
|
|
|
/* Internal use: */
|
|
struct tdb_context;
|
|
enum agent_return external_agent_needs_rec(struct tdb_context *tdb);
|
|
|
|
#endif /* TDB2_TEST_EXTERNAL_AGENT_H */
|