gStore/Database/Database.h

160 lines
5.7 KiB
C
Raw Normal View History

2016-03-12 01:52:18 +08:00
/*=============================================================================
# Filename: Database.h
# Author: Bookug Lobert
# Mail: 1181955272@qq.com
# Last Modified: 2015-10-23 14:20
# Description: originally written by liyouhuan, modified by zengli and chenjiaqi
2016-03-12 01:52:18 +08:00
=============================================================================*/
#ifndef _DATABASE_DATABASE_H
#define _DATABASE_DATABASE_H
#include "../Util/Util.h"
#include "../Util/Triple.h"
#include "Join.h"
2016-03-12 01:52:18 +08:00
#include "../Query/IDList.h"
#include "../Query/ResultSet.h"
#include "../Query/SPARQLquery.h"
#include "../Query/BasicQuery.h"
#include "../Signature/SigEntry.h"
#include "../KVstore/KVstore.h"
#include "../VSTree/VSTree.h"
#include "../Parser/DBparser.h"
#include "../Parser/RDFParser.h"
#include "../Parser/SparqlParser.h"
#include "../Query/GeneralEvaluation.h"
2016-03-12 01:52:18 +08:00
class Database
{
public:
static const bool only_sub2idpre2id = true;
static const int internal = 100*1000;
void test();
void test_build_sig();
void test_join();
void printIDlist(int _i, int* _list, int _len, std::string _log);
void printPairList(int _i, int* _list, int _len, std::string _log);
//when encode EntitySig, one way uses STRING-hash, the other one uses ID-hash
//depending on this->encode_mode
2016-03-12 01:52:18 +08:00
static const int STRING_MODE = 1;
static const int ID_MODE = 2;
Database();
2016-03-12 01:52:18 +08:00
Database(std::string _name);
void release(FILE* fp0);
~Database();
bool load();
bool unload();
bool query(const string _query, ResultSet& _result_set, FILE* _fp = stdout);
2016-03-12 01:52:18 +08:00
//1. if subject of _triple doesn't exist,
//then assign a new subid, and insert a new SigEntry
//2. assign new tuple_id to tuple, if predicate or object doesn't exist before too;
//3. if subject exist, update SigEntry, and update spo, ops... etc. if needed
2016-03-12 01:52:18 +08:00
bool insert(const string& _insert_rdf_file);
bool remove(const string& _rdf_file);
bool build(const string& _rdf_file);
/* name of this DB*/
string getName();
/* root Path of this DB + sixTuplesFile */
string getSixTuplesFile();
/* root Path of this DB + signatureBFile */
string getSignatureBFile();
/* root Path of this DB + DBInfoFile */
string getDBInfoFile();
private:
string name;
bool is_active;
int triples_num;
int entity_num;
int sub_num;
int pre_num;
int literal_num;
int encode_mode;
VSTree* vstree;
KVstore* kvstore;
Join* join;
2016-03-12 01:52:18 +08:00
//metadata of this database: sub_num, pre_num, obj_num, literal_num, etc.
2016-03-12 01:52:18 +08:00
string db_info_file;
//six tuples: <sub pre obj sid pid oid>
2016-03-12 01:52:18 +08:00
string six_tuples_file;
//B means binary
2016-03-12 01:52:18 +08:00
string signature_binary_file;
bool saveDBInfoFile();
bool loadDBInfoFile();
string getStorePath();
//encode relative signature data of all Basic Graph Query, who union together into SPARQLquery
2016-03-12 01:52:18 +08:00
void buildSparqlSignature(SPARQLquery & _sparql_q);
//encode Triple into Subject EntityBitSet
2016-03-12 01:52:18 +08:00
bool encodeTriple2SubEntityBitSet(EntityBitSet& _bitset, const Triple* _p_triple);
//encode Triple into Object EntityBitSet
2016-03-12 01:52:18 +08:00
bool encodeTriple2ObjEntityBitSet(EntityBitSet& _bitset, const Triple* _p_triple);
bool calculateEntityBitSet(int _sub_id, EntityBitSet & _bitset);
//check whether the relative 3-tuples exist
//usually, through sp2olist
2016-03-12 01:52:18 +08:00
bool exist_triple(int _sub_id, int _pre_id, int _obj_id);
//* _rdf_file denotes the path of the RDF file, where stores the rdf data
//* there are many step in this function, each one responds to an sub-function
//* 1. map sub2id and pre2id
//* 2. map literal2id and encode RDF data into signature,
//* storing in binary file: this->getSignatureBFile(), the order responds to subID
//* also, store six_tuples in file: this->getSixTuplesFile()
//* 3. build: subID2objIDlist, <subIDpreID>2objIDlist subID2<preIDobjID>list
//* 4. build: objID2subIDlist, <objIDpreID>2subIDlist objID2<preIDsubID>list
2016-03-12 01:52:18 +08:00
//encodeRDF_new invoke new rdfParser to solve task 1 & 2 in one time scan.
bool encodeRDF(const string _rdf_file);
bool encodeRDF_new(const string _rdf_file);
int insertTriple(const TripleWithObjType& _triple);
bool removeTriple(const TripleWithObjType& _triple);
bool sub2id_pre2id_obj2id_RDFintoSignature(const string _rdf_file, int**& _p_id_tuples, int & _id_tuples_max);
bool sub2id_pre2id(const string _rdf_file, int**& _p_id_tuples, int & _id_tuples_max);
bool literal2id_RDFintoSignature(const string _rdf_file, int** _p_id_tuples, int _id_tuples_max);
2016-05-16 03:16:22 +08:00
bool s2o_s2po_sp2o(int** _p_id_tuples, int _id_tuples_max);
bool o2s_o2ps_op2s(int** _p_id_tuples, int _id_tuples_max);
//NOTICE: below is the new one
//bool s2p_s2po_sp2o(int** _p_id_tuples, int _id_tuples_max);
bool s2p_s2o_s2po_sp2o(int** _p_id_tuples, int _id_tuples_max);
2016-05-16 03:16:22 +08:00
bool o2p_o2s_o2ps_op2s(int** _p_id_tuples, int _id_tuples_max);
bool p2s_p2o_p2so(int** _p_id_tuples, int _id_tuples_max);
bool so2p_s2o(int** _p_id_tuples, int _id_tuples_max);
2016-03-12 01:52:18 +08:00
static int _spo_cmp(const void* _a, const void* _b);
static int _ops_cmp(const void* _a, const void* _b);
2016-05-16 03:16:22 +08:00
static int _pso_cmp(const void* _a, const void* _b);
static int _sop_cmp(const void* _a, const void* _b);
2016-03-12 01:52:18 +08:00
bool objIDIsEntityID(int _id);
//* join on the vector of CandidateList, available after retrieve from the VSTREE
//* and store the resut in _result_set
//bool join(vector<int*>& _result_list, int _var_id, int _pre_id, int _var_id2, const char _edge_type, int _var_num, bool shouldAddLiteral, IDList& _can_list);
//bool select(vector<int*>& _result_list, int _var_id, int _pre_id, int _var_id2, const char _edge_type, int _var_num);
//get the final string result_set from SPARQLquery
2016-03-12 01:52:18 +08:00
bool getFinalResult(SPARQLquery& _sparql_q, ResultSet& _result_set);
};
#endif //_DATABASE_DATABASE_H