Verwendung des C-Treibers des MongoDB-Beamten Ich habe ein Beispiel für den Zugriff auf MongoDB erstellt, daher möchte ich die Quelle und die Prozedur teilen.
Angenommen, CentOS.
diff:/etc/yum.repos.d/mongodb.repo
[mongodb-org-3.6]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.6/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.asc
centos7
yum update -y
yum install -y mongodb-org #Mongodb Installation
#Installation des Mongodb-Treibers
yum install -y make git gcc automake autoconf libtool pkg-config openssl-devel cyrus-sasl-devel wget tar #Was Sie brauchen, um Treiber zu installieren
wget https://github.com/mongodb/mongo-c-driver/releases/download/1.9.5/mongo-c-driver-1.9.5.tar.gz
tar xzf mongo-c-driver-1.9.5.tar.gz
cd mongo-c-driver-1.9.5
./configure
sudo make
sudo make install
Ich werde die Daten für den Test eingeben.
service mongod start #Starten Sie den Mongodb-Server
mongo #Mongodb Server Verbindung
use db_test #DB-Erstellung
#Sammlungserstellung, Dokumenteingabe
db.cl_test.insert({id:1, name:'aaa'});
db.cl_test.insert({id:2, name:'bbb'});
db.cl_test.insert({id:3, name:'ccc'});
exit
mongo.c
#include <bson.h>
#include <bcon.h>
#include <mongoc.h>
#include <stdio.h>
#include <stdlib.h>
int main( void ){
mongoc_client_t * conn = NULL;
mongoc_collection_t * coll = NULL;
mongoc_cursor_t * cusr = NULL;
const bson_t * doc = NULL;
char * ret_str = NULL;
bson_t query;
//DB-Verbindung
conn = mongoc_client_new (
"mongodb://localhost:27017/" //Verbindungsziel-URI
);
if( NULL == conn ){
// error
exit(-1);
}
//Datenerfassung
coll = mongoc_client_get_collection (
conn , //Verbindung
"db_test" , //DB-Name
"cl_test" //Sammlungsname
);
if( NULL == coll ){
// error
mongoc_client_destroy ( conn );
exit(-1);
}
bson_init (&query);
cusr = mongoc_collection_find (
coll , //Sammlung
MONGOC_QUERY_NONE , // mongoc_query_flags_t(Geben Sie keine Suchbedingungen an)
0 , //Startposition(Holen Sie sich von Anfang an)
0 , //Maximale Anzahl von Akquisitionen(Nimm alle)
0 , //Chargengröße(Standardspezifikation(=100) )
&query , //Abfrage(nicht spezifiziert)
NULL , //Feld(Für alle)
NULL //Cluster erfassen(Standardspezifikation(=Holen Sie sich von der Grundschule))
);
if( NULL == cusr ){
// error
mongoc_client_destroy ( conn );
bson_destroy (&query);
exit(-1);
}
while (mongoc_cursor_next ( cusr , &doc ) ) {
ret_str = bson_as_json ( doc , NULL );
printf ( "%s\n", ret_str );
bson_free ( ret_str );
}
//Aufräumen
mongoc_collection_destroy( coll );
mongoc_client_destroy ( conn );
bson_destroy (&query);
return 0;
}
Ich konnte die Bibliothek nicht so finden, wie sie war Erstellen Sie mongo.conf, registrieren Sie es und führen Sie es dann aus.
diff:/etc/ld.so.conf.d/mongo.conf
/usr/local/lib
ldconfig #Einstellungen widerspiegeln
gcc -Wall -o mongo mongo.c -lmongoc-1.0 -lbson-1.0 -L/usr/local/lib -I/usr/local/include/libmongoc-1.0/ -I/usr/local/include/libbson-1.0/
./mongo
{ "_id" : { "$oid" : "54bfc04676613f50e453d617" }, "id" : 1.000000, "name" : "aaa" }
{ "_id" : { "$oid" : "54bfc04676613f50e453d618" }, "id" : 2.000000, "name" : "bbb" }
{ "_id" : { "$oid" : "54bfc04976613f50e453d619" }, "id" : 3.000000, "name" : "ccc" }
Es scheint, dass Sie JSON in C analysieren müssen.
Recommended Posts