博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MongoDB C++ gridfs worked example
阅读量:6607 次
发布时间:2019-06-24

本文共 1612 字,大约阅读时间需要 5 分钟。

使用libmongoc,参考:http://mongoc.org/libmongoc/current/mongoc_gridfs_t.html

#include 
#include
#include
#include
class MongoGridFS {public: MongoGridFS(const char* db); ~MongoGridFS(); void saveFile(const char* input_file_path, const char* filename);private: mongoc_gridfs_t *gridfs; mongoc_client_t *client;};MongoGridFS::MongoGridFS(const char* db) { assert(db != NULL); mongoc_init (); /* connect to localhost client */ client = mongoc_client_new ("mongodb://127.0.0.1:27017?appname=gridfs-example"); assert (client); mongoc_client_set_error_api (client, 2); /* grab a gridfs handle in test prefixed by fs */ bson_error_t error; gridfs = mongoc_client_get_gridfs (client, db, "fs", &error); assert (gridfs);}void MongoGridFS::saveFile(const char* input_file_path, const char* filename) { assert(input_file_path != NULL && filename != NULL); mongoc_stream_t *stream = mongoc_stream_file_new_for_path (input_file_path, O_RDONLY, 0); assert (stream); mongoc_gridfs_file_opt_t opt = {
0}; opt.filename = filename; /* the driver generates a file_id for you */ mongoc_gridfs_file_t *file = mongoc_gridfs_create_file_from_stream (gridfs, stream, &opt); assert (file); mongoc_gridfs_file_save (file); mongoc_gridfs_file_destroy (file);}MongoGridFS::~MongoGridFS() { mongoc_gridfs_destroy (gridfs); mongoc_client_destroy (client); mongoc_cleanup ();}intmain (int argc, char *argv[]){ MongoGridFS gridfs("test2gridfs"); gridfs.saveFile("test.py", "test.py"); return 0;}

 

转载地址:http://eciso.baihongyu.com/

你可能感兴趣的文章
js 合并多个对象 Object.assign
查看>>
Java 反射机制
查看>>
temporary Object and destructor
查看>>
xcode - 移动手势
查看>>
细说浏览器特性检测(1)-jQuery1.4添加部分
查看>>
古中国数学家的计算力真是惊人
查看>>
Java基础-算术运算符(Arithmetic Operators)
查看>>
C#编程(四十七)----------集合接口和类型
查看>>
【转】关于大型网站技术演进的思考(十二)--网站静态化处理—缓存(4)
查看>>
积跬步,聚小流------Bootstrap学习记录(1)
查看>>
HDUPhysical Examination(贪心)
查看>>
C++中public、protected及private用法
查看>>
苹果公司的产品已用完后门与微软垄断,要检查起来,打架!
查看>>
顶级的JavaScript框架、库、工具及其使用
查看>>
AYUI -AYUI风格的 超美 百度网盘8.0
查看>>
用MPMoviePlayerController做在线音乐播放
查看>>
【前端笔记】彻底理解变量与函数的声明提升
查看>>
Android 反编译利器,jadx 的高级技巧
查看>>
Android官方架构组件LiveData: 观察者模式领域二三事
查看>>
[Android组件化]组件化数据分享
查看>>