1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/ctdb/client/client_private.h
Amitay Isaacs c6a50b97d4 ctdb-client: Add new client API implementation
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
2015-10-07 14:53:29 +02:00

80 lines
2.1 KiB
C

/*
CTDB client code
Copyright (C) Amitay Isaacs 2015
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __CTDB_CLIENT_PRIVATE_H__
#define __CTDB_CLIENT_PRIVATE_H__
#include "protocol/protocol.h"
struct ctdb_db_context {
struct ctdb_db_context *prev, *next;
uint32_t db_id;
const char *db_name;
const char *db_path;
struct tdb_wrap *ltdb;
bool persistent;
};
struct ctdb_client_context {
struct reqid_context *idr;
struct srvid_context *srv;
struct comm_context *comm;
int fd;
uint32_t pnn;
struct ctdb_db_context *db;
};
struct ctdb_record_handle {
struct tevent_context *ev;
struct ctdb_client_context *client;
struct ctdb_db_context *db;
struct ctdb_ltdb_header header;
TDB_DATA key;
TDB_DATA data; /* This is returned from tdb_fetch() */
bool readonly;
};
struct ctdb_transaction_handle {
struct tevent_context *ev;
struct ctdb_client_context *client;
struct ctdb_db_context *db, *db_g_lock;
struct ctdb_rec_buffer *recbuf;
struct ctdb_server_id sid;
const char *lock_name;
bool readonly;
bool updated;
};
/* From client_call.c */
void ctdb_client_reply_call(struct ctdb_client_context *client,
uint8_t *buf, size_t buflen, uint32_t reqid);
/* From client_message.c */
void ctdb_client_req_message(struct ctdb_client_context *client,
uint8_t *buf, size_t buflen, uint32_t reqid);
/* From client_control.c */
void ctdb_client_reply_control(struct ctdb_client_context *client,
uint8_t *buf, size_t buflen, uint32_t reqid);
#endif /* __CTDB_CLIENT_PRIVATE_H__ */