1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-09-28 19:05:55 +08:00
ULib/include/ulib/net/client/mongodb.h
stefanocasazza 10126a71e0 sync
2016-07-06 17:37:48 +02:00

217 lines
5.9 KiB
C++

// ============================================================================
//
// = LIBRARY
// ULib - c++ library
//
// = FILENAME
// mongodb.h - Simple MongoDB client
//
// = AUTHOR
// Stefano Casazza
//
// ============================================================================
#ifndef ULIB_MONGODB_H
#define ULIB_MONGODB_H 1
#include <ulib/container/vector.h>
#ifndef USE_MONGODB
typedef int bson_t;
typedef int mongoc_write_concern_t;
typedef int mongoc_bulk_operation_t;
#else
# include <mongoc.h>
#endif
/**
* @class UMongoDBClient
*
* @brief UMongoDBClient is a wrapper to MongoDB client API
*/
class U_EXPORT UMongoDBClient {
public:
// Check for memory error
U_MEMORY_TEST
// Allocator e Deallocator
U_MEMORY_ALLOCATOR
U_MEMORY_DEALLOCATOR
UMongoDBClient() : uri(100)
{
U_TRACE_REGISTER_OBJECT(0, UMongoDBClient, "", 0)
# ifdef USE_MONGODB
puri = 0;
client = 0;
collection = 0;
U_SYSCALL_VOID_NO_PARAM(mongoc_init);
# endif
}
~UMongoDBClient()
{
U_TRACE_UNREGISTER_OBJECT(0, UMongoDBClient)
# ifdef USE_MONGODB
if (puri) U_SYSCALL_VOID(mongoc_uri_destroy, "%p", puri);
if (client) U_SYSCALL_VOID(mongoc_client_destroy, "%p", client);
if (collection) U_SYSCALL_VOID(mongoc_collection_destroy, "%p", collection);
U_SYSCALL_VOID_NO_PARAM(mongoc_cleanup);
# endif
}
// SERVICES
UVector<UString> vitem;
bool findOne(uint32_t value)
{
U_TRACE(0, "UMongoDBClient::findOne(%u)", value)
# ifndef USE_MONGODB
U_RETURN(false);
# else
U_INTERNAL_ASSERT_POINTER(client)
U_INTERNAL_ASSERT_POINTER(collection)
bson_t* query = (bson_t*) U_SYSCALL_NO_PARAM(bson_new);
BSON_APPEND_INT32(query, "_id", value);
bool result = find(query, 0);
U_SYSCALL_VOID(bson_destroy, "%p", query);
U_RETURN(result);
# endif
}
bool findAll()
{
U_TRACE(0, "UMongoDBClient::findAll()")
# ifndef USE_MONGODB
U_RETURN(false);
# else
U_INTERNAL_ASSERT_POINTER(client)
U_INTERNAL_ASSERT_POINTER(collection)
bson_t* query = (bson_t*) U_SYSCALL_NO_PARAM(bson_new);
bool result = find(query, 0);
U_SYSCALL_VOID(bson_destroy, "%p", query);
U_RETURN(result);
# endif
}
#ifndef USE_MONGODB
bool executeBulk(mongoc_bulk_operation_t* bulk) { return false; }
bool connect(const char* host = 0, unsigned int _port = 27017) { return false; }
bool selectCollection(const char* db, const char* name_collection) { return false; }
bool update(uint32_t old_value, const char* key, uint32_t new_value) { return false; }
void updateOneBulk(mongoc_bulk_operation_t* bulk, uint32_t old_value, const char* key, uint32_t new_value) {}
mongoc_bulk_operation_t* createBulk(bool ordered, const mongoc_write_concern_t* write_concern = 0) { return 0; }
# if defined(U_STDCPP_ENABLE) && defined(DEBUG)
const char* dump(bool reset) const { return ""; }
# endif
#else
bool insert(bson_t* doc);
bool findOne(const char* json, uint32_t len);
bool find(bson_t* query, bson_t* projection = 0, mongoc_query_flags_t flags = MONGOC_QUERY_NONE, mongoc_read_prefs_t* read_prefs = 0);
bool findAggregation(bson_t* pipeline, bson_t* options = 0, mongoc_query_flags_t flags = MONGOC_QUERY_NONE, mongoc_read_prefs_t* read_prefs = 0); // Execute an 'aggregation' query
bool update(bson_t* query, bson_t* update);
bool findAndModify(bson_t* query, bson_t* update);
bool selectCollection(const char* db, const char* name_collection);
bool update(uint32_t old_value, const char* key, uint32_t new_value);
bool connect(const char* host = 0, unsigned int _port = 27017); // connect to MongoDB server
// BULK
bool executeBulk(mongoc_bulk_operation_t* bulk);
void updateOneBulk(mongoc_bulk_operation_t* bulk, uint32_t old_value, const char* key, uint32_t new_value);
mongoc_bulk_operation_t* createBulk(bool ordered, const mongoc_write_concern_t* write_concern = 0)
{
U_TRACE(0, "UMongoDBClient::createBulk(%b,%p)", ordered, write_concern)
# ifndef USE_MONGODB
U_RETURN_POINTER(0, mongoc_bulk_operation_t);
# else
U_INTERNAL_ASSERT_POINTER(client)
U_INTERNAL_ASSERT_POINTER(collection)
mongoc_bulk_operation_t* bulk = (mongoc_bulk_operation_t*) U_SYSCALL(mongoc_collection_create_bulk_operation, "%p,%b,%p", collection, ordered, write_concern);
U_RETURN_POINTER(bulk, mongoc_bulk_operation_t);
# endif
}
void insertBulk(mongoc_bulk_operation_t* bulk, const bson_t* doc)
{
U_TRACE(0, "UMongoDBClient::insertBulk(%p,%p)", bulk, doc)
# ifdef USE_MONGODB
U_INTERNAL_ASSERT_POINTER(client)
U_INTERNAL_ASSERT_POINTER(collection)
U_SYSCALL_VOID(mongoc_bulk_operation_insert, "%p,%p", bulk, doc);
# endif
}
void updateBulk(mongoc_bulk_operation_t* bulk, bson_t* query, bson_t* _update) // This function queues an update as part of a bulk operation
{
U_TRACE(0, "UMongoDBClient::updateBulk(%p,%p,%p)", bulk, query, _update)
# ifdef USE_MONGODB
U_INTERNAL_ASSERT_POINTER(client)
U_INTERNAL_ASSERT_POINTER(collection)
U_SYSCALL_VOID(mongoc_bulk_operation_update, "%p,%p,%p,%b", bulk, query, _update, false);
U_SYSCALL_VOID(bson_destroy, "%p", query);
U_SYSCALL_VOID(bson_destroy, "%p", _update);
# endif
}
# if defined(U_STDCPP_ENABLE) && defined(DEBUG)
const char* dump(bool reset) const;
# endif
#endif
protected:
UString uri;
#ifdef USE_MONGODB
mongoc_uri_t* puri;
mongoc_client_t* client;
mongoc_cursor_t* cursor;
mongoc_collection_t* collection;
#endif
void readFromCursor();
private:
#ifdef U_COMPILER_DELETE_MEMBERS
UMongoDBClient(const UMongoDBClient&) = delete;
UMongoDBClient& operator=(const UMongoDBClient&) = delete;
#else
UMongoDBClient(const UMongoDBClient&) {}
UMongoDBClient& operator=(const UMongoDBClient&) { return *this; }
#endif
};
#endif