2016-09-13 18:54:26 -07:00
|
|
|
#ifndef DB_H
|
|
|
|
#define DB_H
|
|
|
|
|
2016-11-18 19:57:51 -08:00
|
|
|
#include "common.h"
|
2016-09-13 18:54:26 -07:00
|
|
|
#include "event_loop.h"
|
|
|
|
|
2016-10-29 15:22:33 -07:00
|
|
|
typedef struct db_handle db_handle;
|
2016-09-13 18:54:26 -07:00
|
|
|
|
2016-11-18 19:57:51 -08:00
|
|
|
/**
|
|
|
|
* Connect to the global system store.
|
|
|
|
*
|
|
|
|
* @param db_address The hostname to use to connect to the database.
|
|
|
|
* @param db_port The port to use to connect to the database.
|
|
|
|
* @param client_type The type of this client.
|
2016-12-20 20:21:35 -08:00
|
|
|
* @param node_ip_address The hostname of the client that is connecting.
|
|
|
|
* @param num_args The number of extra arguments that should be supplied. This
|
|
|
|
* should be an even number.
|
|
|
|
* @param args An array of extra arguments strings. They should alternate
|
|
|
|
* between the name of the argument and the value of the argument. For
|
|
|
|
* examples: "port", "1234", "socket_name", "/tmp/s1".
|
2016-11-18 19:57:51 -08:00
|
|
|
* @return This returns a handle to the database, which must be freed with
|
|
|
|
* db_disconnect after use.
|
|
|
|
*/
|
2016-09-25 21:52:06 -07:00
|
|
|
db_handle *db_connect(const char *db_address,
|
|
|
|
int db_port,
|
|
|
|
const char *client_type,
|
2016-12-20 20:21:35 -08:00
|
|
|
const char *node_ip_address,
|
|
|
|
int num_args,
|
|
|
|
const char **args);
|
|
|
|
|
2016-11-18 19:57:51 -08:00
|
|
|
/**
|
|
|
|
* Attach global system store connection to an event loop. Callbacks from
|
|
|
|
* queries to the global system store will trigger events in the event loop.
|
|
|
|
*
|
2016-12-05 00:26:53 -08:00
|
|
|
* @param db The handle to the database that is connected.
|
|
|
|
* @param loop The event loop the database gets connected to.
|
|
|
|
* @param reattach Can only be true in unit tests. If true, the database is
|
|
|
|
* reattached to the loop.
|
2016-11-18 19:57:51 -08:00
|
|
|
* @return Void.
|
|
|
|
*/
|
2016-12-05 00:26:53 -08:00
|
|
|
void db_attach(db_handle *db, event_loop *loop, bool reattach);
|
2016-09-13 18:54:26 -07:00
|
|
|
|
2016-11-18 19:57:51 -08:00
|
|
|
/**
|
|
|
|
* Disconnect from the global system store.
|
|
|
|
*
|
|
|
|
* @param db The database connection to close and clean up.
|
|
|
|
* @return Void.
|
|
|
|
*/
|
2016-09-25 21:52:06 -07:00
|
|
|
void db_disconnect(db_handle *db);
|
2016-09-13 18:54:26 -07:00
|
|
|
|
2016-10-18 15:12:41 -07:00
|
|
|
/**
|
2016-11-18 19:57:51 -08:00
|
|
|
* Returns the db client ID.
|
2016-10-18 15:12:41 -07:00
|
|
|
*
|
|
|
|
* @param db The handle to the database.
|
2016-11-18 19:57:51 -08:00
|
|
|
* @returns int The db client ID for this connection to the database.
|
2016-10-18 15:12:41 -07:00
|
|
|
*/
|
2016-11-18 19:57:51 -08:00
|
|
|
db_client_id get_db_client_id(db_handle *db);
|
2016-10-18 15:12:41 -07:00
|
|
|
|
2016-09-13 18:54:26 -07:00
|
|
|
#endif
|