gStore/Database/Database.cpp

3978 lines
110 KiB
C++
Raw Normal View History

2016-09-18 20:01:57 +08:00
/*=============================================================================
# Filename: Database.cpp
2016-09-18 20:01:57 +08:00
# Author: Bookug Lobert
# Mail: 1181955272@qq.com
# Last Modified: 2016-09-11 15:27
2016-09-18 20:01:57 +08:00
# Description: originally written by liyouhuan, modified by zengli and chenjiaqi
=============================================================================*/
#include "Database.h"
using namespace std;
Database::Database()
{
this->name = "";
this->store_path = "";
2016-09-18 20:01:57 +08:00
string store_path = ".";
this->signature_binary_file = "signature.binary";
this->six_tuples_file = "six_tuples";
this->db_info_file = "db_info_file.dat";
this->id_tuples_file = "id_tuples";
this->update_log = "update.log";
this->update_log_since_backup = "update_since_backup.log";
2016-09-18 20:01:57 +08:00
string kv_store_path = store_path + "/kv_store";
this->kvstore = new KVstore(kv_store_path);
string vstree_store_path = store_path + "/vs_store";
this->vstree = new VSTree(vstree_store_path);
2017-01-16 14:12:57 +08:00
string stringindex_store_path = store_path + "/stringindex_store";
this->stringindex = new StringIndex(stringindex_store_path);
//this->encode_mode = Database::STRING_MODE;
this->encode_mode = Database::ID_MODE;
2016-09-18 20:01:57 +08:00
this->is_active = false;
this->sub_num = 0;
this->pre_num = 0;
this->literal_num = 0;
this->entity_num = 0;
this->triples_num = 0;
this->join = NULL;
2017-01-16 14:12:57 +08:00
this->pre2num = NULL;
this->entity_buffer = NULL;
this->entity_buffer_size = 0;
this->literal_buffer = NULL;
this->literal_buffer_size = 0;
2016-09-18 20:01:57 +08:00
this->if_loaded = false;
//this->resetIDinfo();
this->initIDinfo();
2016-09-18 20:01:57 +08:00
}
Database::Database(string _name)
{
this->name = _name;
size_t found = this->name.find_last_not_of('/');
if (found != string::npos)
{
this->name.erase(found + 1);
}
this->store_path = Util::global_config["db_home"] + "/" + this->name + Util::global_config["db_suffix"];
2016-09-18 20:01:57 +08:00
this->signature_binary_file = "signature.binary";
this->six_tuples_file = "six_tuples";
this->db_info_file = "db_info_file.dat";
this->id_tuples_file = "id_tuples";
this->update_log = "update.log";
this->update_log_since_backup = "update_since_backup.log";
2016-09-18 20:01:57 +08:00
string kv_store_path = store_path + "/kv_store";
this->kvstore = new KVstore(kv_store_path);
string vstree_store_path = store_path + "/vs_store";
this->vstree = new VSTree(vstree_store_path);
2017-01-16 14:12:57 +08:00
string stringindex_store_path = store_path + "/stringindex_store";
this->stringindex = new StringIndex(stringindex_store_path);
//this->encode_mode = Database::STRING_MODE;
this->encode_mode = Database::ID_MODE;
2016-09-18 20:01:57 +08:00
this->is_active = false;
this->sub_num = 0;
this->pre_num = 0;
this->literal_num = 0;
this->entity_num = 0;
this->triples_num = 0;
this->if_loaded = false;
2016-09-18 20:01:57 +08:00
this->join = NULL;
2017-01-16 14:12:57 +08:00
this->pre2num = NULL;
this->entity_buffer = NULL;
this->entity_buffer_size = 0;
this->literal_buffer = NULL;
this->literal_buffer_size = 0;
2016-09-18 20:01:57 +08:00
//this->resetIDinfo();
this->initIDinfo();
2016-09-18 20:01:57 +08:00
}
//==================================================================================================================================================
//NOTICE:
//there are 3 ways to manage a dynamic-garbage ID list
//1. push all unused IDs into list, get top each time to alloc, push freed one to tail, push more large one if NULL
//(can use bit array if stored in disk)
//2. when free, change the mapping for non-free one whose ID is the largest currently
//(sometimes maybe the copy cost is very high)
//3. NULL first and push one if freed, get one if not empty(limit+1 if NULL)
//(when stored in disk, maybe consume larger space)
2017-01-16 14:12:57 +08:00
//However, this method can keep the used largest easily(no!! 1->2->3, delete 2 and delete 3, then the max 1 is not kept by limit!)
2016-09-18 20:01:57 +08:00
void
Database::initIDinfo()
{
2017-01-16 14:12:57 +08:00
//NOTICE:keep that limit-1 the maxium using ID
2016-09-18 20:01:57 +08:00
this->free_id_file_entity = this->getStorePath() + "/freeEntityID.dat";
2017-01-16 14:12:57 +08:00
this->limitID_entity = 0;
2016-09-18 20:01:57 +08:00
this->freelist_entity = NULL;
this->free_id_file_literal = this->getStorePath() + "/freeLiteralID.dat";
2017-01-16 14:12:57 +08:00
this->limitID_literal = 0;
2016-09-18 20:01:57 +08:00
this->freelist_literal = NULL;
this->free_id_file_predicate = this->getStorePath() + "/freePredicateID.dat";
2017-01-16 14:12:57 +08:00
this->limitID_predicate = 0;
2016-09-18 20:01:57 +08:00
this->freelist_predicate = NULL;
}
void
Database::resetIDinfo()
{
this->initIDinfo();
2017-01-16 14:12:57 +08:00
//this->limitID_entity = Database::START_ID_NUM;
2016-09-18 20:01:57 +08:00
//NOTICE:add base LITERAL_FIRST_ID for literals
2017-01-16 14:12:57 +08:00
//this->limitID_literal = Database::START_ID_NUM;
//this->limitID_predicate = Database::START_ID_NUM;
2016-09-18 20:01:57 +08:00
2017-01-16 14:12:57 +08:00
//BlockInfo* tmp = NULL;
2017-03-24 20:10:43 +08:00
//for (TYPE_ENTITY_LITERAL_ID i = Database::START_ID_NUM - 1; i >= 0; --i)
2017-01-16 14:12:57 +08:00
//{
//tmp = new BlockInfo(i, this->freelist_entity);
//this->freelist_entity = tmp;
//tmp = new BlockInfo(i, this->freelist_literal);
//this->freelist_literal = tmp;
//tmp = new BlockInfo(i, this->freelist_predicate);
//this->freelist_predicate = tmp;
//}
2016-09-18 20:01:57 +08:00
}
void
Database::readIDinfo()
{
this->initIDinfo();
FILE* fp = NULL;
2017-03-24 20:10:43 +08:00
//int t = -1;
TYPE_ENTITY_LITERAL_ID t = INVALID_ENTITY_LITERAL_ID;
2016-09-18 20:01:57 +08:00
BlockInfo* bp = NULL;
fp = fopen(this->free_id_file_entity.c_str(), "r");
if (fp == NULL)
{
cout << "read entity id info error" << endl;
2016-09-18 20:01:57 +08:00
return;
}
//QUERY:this will reverse the original order, if change?
//Notice that if we cannot ensure that IDs are uporder and continuous, we can
//not keep an array for IDs like _entity_bitset
BlockInfo *tmp = NULL, *cur = NULL;
fread(&(this->limitID_entity), sizeof(int), 1, fp);
fread(&t, sizeof(int), 1, fp);
while (!feof(fp))
{
//if(t == 14912)
//{
2017-01-16 14:12:57 +08:00
//cout<<"Database::readIDinfo() - get 14912"<<endl;
//}
2016-09-18 20:01:57 +08:00
//bp = new BlockInfo(t, this->freelist_entity);
//this->freelist_entity = bp;
tmp = new BlockInfo(t);
if (cur == NULL)
{
this->freelist_entity = cur = tmp;
}
else
{
cur->next = tmp;
cur = tmp;
}
2016-09-18 20:01:57 +08:00
fread(&t, sizeof(int), 1, fp);
}
fclose(fp);
fp = NULL;
fp = fopen(this->free_id_file_literal.c_str(), "r");
if (fp == NULL)
{
cout << "read literal id info error" << endl;
2016-09-18 20:01:57 +08:00
return;
}
2017-03-24 20:10:43 +08:00
2016-09-18 20:01:57 +08:00
fread(&(this->limitID_literal), sizeof(int), 1, fp);
fread(&t, sizeof(int), 1, fp);
while (!feof(fp))
{
bp = new BlockInfo(t, this->freelist_literal);
this->freelist_literal = bp;
fread(&t, sizeof(int), 1, fp);
}
fclose(fp);
fp = NULL;
fp = fopen(this->free_id_file_predicate.c_str(), "r");
if (fp == NULL)
{
cout << "read predicate id info error" << endl;
2016-09-18 20:01:57 +08:00
return;
}
fread(&(this->limitID_predicate), sizeof(int), 1, fp);
fread(&t, sizeof(int), 1, fp);
while (!feof(fp))
{
bp = new BlockInfo(t, this->freelist_predicate);
this->freelist_predicate = bp;
fread(&t, sizeof(int), 1, fp);
}
fclose(fp);
fp = NULL;
}
void
Database::writeIDinfo()
{
//cout<<"now to write the id info"<<endl;
FILE* fp = NULL;
BlockInfo *bp = NULL, *tp = NULL;
fp = fopen(this->free_id_file_entity.c_str(), "w+");
if (fp == NULL)
{
cout << "write entity id info error" << endl;
2016-09-18 20:01:57 +08:00
return;
}
fwrite(&(this->limitID_entity), sizeof(int), 1, fp);
bp = this->freelist_entity;
while (bp != NULL)
{
//if(bp->num == 14912)
//{
2017-01-16 14:12:57 +08:00
//cout<<"Database::writeIDinfo() - get 14912"<<endl;
//}
2016-09-18 20:01:57 +08:00
fwrite(&(bp->num), sizeof(int), 1, fp);
tp = bp->next;
delete bp;
bp = tp;
}
fclose(fp);
fp = NULL;
fp = fopen(this->free_id_file_literal.c_str(), "w+");
if (fp == NULL)
{
cout << "write literal id info error" << endl;
2016-09-18 20:01:57 +08:00
return;
}
fwrite(&(this->limitID_literal), sizeof(int), 1, fp);
bp = this->freelist_literal;
while (bp != NULL)
{
fwrite(&(bp->num), sizeof(int), 1, fp);
tp = bp->next;
delete bp;
bp = tp;
}
fclose(fp);
fp = NULL;
fp = fopen(this->free_id_file_predicate.c_str(), "w+");
if (fp == NULL)
{
cout << "write predicate id info error" << endl;
2016-09-18 20:01:57 +08:00
return;
}
fwrite(&(this->limitID_predicate), sizeof(int), 1, fp);
bp = this->freelist_predicate;
while (bp != NULL)
{
fwrite(&(bp->num), sizeof(int), 1, fp);
tp = bp->next;
delete bp;
bp = tp;
}
fclose(fp);
fp = NULL;
}
//ID alloc garbage error(LITERAL_FIRST_ID or double) add base for literal
TYPE_ENTITY_LITERAL_ID
2016-09-18 20:01:57 +08:00
Database::allocEntityID()
{
2017-03-24 20:10:43 +08:00
//int t;
TYPE_ENTITY_LITERAL_ID t = INVALID_ENTITY_LITERAL_ID;
2016-09-18 20:01:57 +08:00
if (this->freelist_entity == NULL)
{
2017-01-16 14:12:57 +08:00
t = this->limitID_entity++;
2016-09-18 20:01:57 +08:00
if (this->limitID_entity >= Util::LITERAL_FIRST_ID)
{
cout << "fail to alloc id for entity" << endl;
//return -1;
return INVALID;
2016-09-18 20:01:57 +08:00
}
}
2017-01-16 14:12:57 +08:00
else
{
t = this->freelist_entity->num;
BlockInfo* op = this->freelist_entity;
this->freelist_entity = this->freelist_entity->next;
delete op;
}
2016-09-18 20:01:57 +08:00
this->entity_num++;
return t;
}
void
2017-03-24 20:10:43 +08:00
Database::freeEntityID(TYPE_ENTITY_LITERAL_ID _id)
2016-09-18 20:01:57 +08:00
{
2017-01-16 14:12:57 +08:00
if (_id == this->limitID_entity - 1)
{
this->limitID_entity--;
}
else
{
BlockInfo* p = new BlockInfo(_id, this->freelist_entity);
this->freelist_entity = p;
}
2016-09-18 20:01:57 +08:00
this->entity_num--;
}
TYPE_ENTITY_LITERAL_ID
2016-09-18 20:01:57 +08:00
Database::allocLiteralID()
{
2017-03-24 20:10:43 +08:00
//int t;
TYPE_ENTITY_LITERAL_ID t = INVALID_ENTITY_LITERAL_ID;
2016-09-18 20:01:57 +08:00
if (this->freelist_literal == NULL)
{
2017-01-16 14:12:57 +08:00
t = this->limitID_literal++;
2016-09-18 20:01:57 +08:00
if (this->limitID_literal >= Util::LITERAL_FIRST_ID)
{
cout << "fail to alloc id for literal" << endl;
//return -1;
return INVALID;
2016-09-18 20:01:57 +08:00
}
}
2017-01-16 14:12:57 +08:00
else
{
t = this->freelist_literal->num;
BlockInfo* op = this->freelist_literal;
this->freelist_literal = this->freelist_literal->next;
delete op;
}
2016-09-18 20:01:57 +08:00
this->literal_num++;
return t + Util::LITERAL_FIRST_ID;
}
void
2017-03-24 20:10:43 +08:00
Database::freeLiteralID(TYPE_ENTITY_LITERAL_ID _id)
2016-09-18 20:01:57 +08:00
{
2017-03-24 20:10:43 +08:00
_id -= Util::LITERAL_FIRST_ID;
2017-01-16 14:12:57 +08:00
if (_id == this->limitID_literal - 1)
{
this->limitID_literal--;
}
else
{
2017-03-24 20:10:43 +08:00
BlockInfo* p = new BlockInfo(_id, this->freelist_literal);
2017-01-16 14:12:57 +08:00
this->freelist_literal = p;
}
2016-09-18 20:01:57 +08:00
this->literal_num--;
}
TYPE_PREDICATE_ID
2016-09-18 20:01:57 +08:00
Database::allocPredicateID()
{
2017-03-24 20:10:43 +08:00
//int t;
TYPE_PREDICATE_ID t = INVALID_PREDICATE_ID;
2016-09-18 20:01:57 +08:00
if (this->freelist_predicate == NULL)
{
2017-01-16 14:12:57 +08:00
t = this->limitID_predicate++;
if (this->limitID_predicate >= Util::LITERAL_FIRST_ID)
2016-09-18 20:01:57 +08:00
{
cout << "fail to alloc id for predicate" << endl;
//WARN:if pid is changed to unsigned type, this must be changed
2016-09-18 20:01:57 +08:00
return -1;
}
}
2017-01-16 14:12:57 +08:00
else
{
t = this->freelist_predicate->num;
BlockInfo* op = this->freelist_predicate;
this->freelist_predicate = this->freelist_predicate->next;
delete op;
}
2016-09-18 20:01:57 +08:00
this->pre_num++;
return t;
}
void
2017-03-24 20:10:43 +08:00
Database::freePredicateID(TYPE_PREDICATE_ID _id)
2016-09-18 20:01:57 +08:00
{
2017-01-16 14:12:57 +08:00
if (_id == this->limitID_predicate - 1)
{
this->limitID_predicate--;
}
else
{
BlockInfo* p = new BlockInfo(_id, this->freelist_predicate);
this->freelist_predicate = p;
}
2016-09-18 20:01:57 +08:00
this->pre_num--;
}
void
Database::release(FILE* fp0)
{
fprintf(fp0, "begin to delete DB!\n");
fflush(fp0);
this->vstree->saveTree();
2016-09-18 20:01:57 +08:00
delete this->vstree;
fprintf(fp0, "ok to delete vstree!\n");
fflush(fp0);
delete this->kvstore;
fprintf(fp0, "ok to delete kvstore!\n");
fflush(fp0);
//fclose(Util::debug_database);
//Util::debug_database = NULL; //debug: when multiple databases
fprintf(fp0, "ok to delete DB!\n");
fflush(fp0);
}
Database::~Database()
{
this->unload();
//fclose(Util::debug_database);
//Util::debug_database = NULL; //debug: when multiple databases
}
2017-01-16 14:12:57 +08:00
void
Database::setPreMap()
{
2017-03-24 20:10:43 +08:00
//this->maxNumPID = this->minNumPID = -1;
this->maxNumPID = this->minNumPID = INVALID_PREDICATE_ID;
//int max = 0, min = this->triples_num + 1;
TYPE_TRIPLE_NUM max = 0, min = this->triples_num + 1;
this->pre2num = new TYPE_TRIPLE_NUM[this->limitID_predicate];
TYPE_PREDICATE_ID valid = 0, i, t;
2017-01-16 14:12:57 +08:00
for (i = 0; i < this->limitID_predicate; ++i)
{
if (valid == this->pre_num)
{
t = 0;
}
else
{
t = this->kvstore->getPredicateDegree(i);
}
this->pre2num[i] = t;
//NOTICE:only when pre2num[i]>0 then i is a valid predicate id
2017-01-16 14:12:57 +08:00
if (t > 0)
{
valid++;
if (t > max)
{
this->maxNumPID = i;
}
if (t < min)
{
this->minNumPID = i;
}
}
}
}
void
Database::setStringBuffer()
{
2017-06-13 15:24:00 +08:00
//TODO: assign according to memory manager
2017-01-16 14:12:57 +08:00
//BETTER?maybe different size for entity and literal, maybe different offset should be used
this->entity_buffer_size = (this->limitID_entity<50000000) ? this->limitID_entity : 50000000;
this->literal_buffer_size = (this->limitID_literal<50000000) ? this->limitID_literal : 50000000;
this->entity_buffer = new Buffer(this->entity_buffer_size);
this->literal_buffer = new Buffer(this->literal_buffer_size);
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID valid = 0, i;
2017-01-16 14:12:57 +08:00
string str;
for (i = 0; i < this->entity_buffer_size; ++i)
{
if (valid == this->entity_num)
{
str = "";
}
else
{
str = this->kvstore->getEntityByID(i);
}
this->entity_buffer->set(i, str);
if (str != "")
{
valid++;
}
}
valid = 0;
for (i = 0; i < this->literal_buffer_size; ++i)
{
if (valid == this->literal_num)
{
str = "";
}
else
{
str = this->kvstore->getLiteralByID(i + Util::LITERAL_FIRST_ID);
}
this->literal_buffer->set(i, str);
if (str != "")
{
valid++;
}
}
//use this string buffer in StringIndex class, if not exist, then also use StringIndex to search
this->stringindex->setBuffer(this->entity_buffer, this->literal_buffer);
}
void
Database::warmUp()
{
//the most frequent triple
2017-03-24 20:10:43 +08:00
TYPE_PREDICATE_ID pid1 = this->maxNumPID;
2017-01-16 14:12:57 +08:00
ResultSet rs1;
string str1 = "select ?s ?o where { ?s " + this->kvstore->getPredicateByID(pid1) + " ?o . }";
this->query(str1, rs1);
//the most infrequent triple
2017-03-24 20:10:43 +08:00
TYPE_PREDICATE_ID pid2 = this->minNumPID;
2017-01-16 14:12:57 +08:00
ResultSet rs2;
string str2 = "select ?s ?o where { ?s " + this->kvstore->getPredicateByID(pid2) + " ?o . }";
this->query(str2, rs2);
}
2016-09-18 20:01:57 +08:00
bool
Database::load()
{
if(this->if_loaded)
{
return true;
}
//TODO: acquire this arg from memory manager
//BETTER: get return value from subthread(using ref or file as hub)
unsigned vstree_cache = LRUCache::DEFAULT_CAPACITY;
bool flag;
2017-06-13 15:24:00 +08:00
#ifndef THREAD_ON
flag = (this->vstree)->loadTree(vstree_cache);
if (!flag)
{
cout << "load tree error. @Database::load()" << endl;
return false;
}
(this->kvstore)->open();
#else
thread vstree_thread(&Database::load_vstree, this, vstree_cache);
2016-09-18 20:01:57 +08:00
int kv_mode = KVstore::READ_WRITE_MODE;
thread entity2id_thread(&Database::load_entity2id, this, kv_mode);
thread id2entity_thread(&Database::load_id2entity, this, kv_mode);
thread literal2id_thread(&Database::load_literal2id, this, kv_mode);
thread id2literal_thread(&Database::load_id2literal, this, kv_mode);
thread predicate2id_thread(&Database::load_predicate2id, this, kv_mode);
2017-06-13 15:24:00 +08:00
#ifndef ONLY_READ
thread id2predicate_thread(&Database::load_id2predicate, this, kv_mode);
2017-06-13 15:24:00 +08:00
#endif
thread sub2values_thread(&Database::load_sub2values, this, kv_mode);
thread obj2values_thread(&Database::load_obj2values, this, kv_mode);
thread pre2values_thread(&Database::load_pre2values, this, kv_mode);
2017-06-13 15:24:00 +08:00
#endif
//this is very fast
2016-09-18 20:01:57 +08:00
flag = this->loadDBInfoFile();
if (!flag)
{
cout << "load database info error. @Database::load()" << endl;
2016-09-18 20:01:57 +08:00
return false;
}
//NOTICE: we should also run some heavy work in the main thread
2017-01-16 14:12:57 +08:00
this->stringindex->load();
2016-09-18 20:01:57 +08:00
this->readIDinfo();
2017-06-13 15:24:00 +08:00
#ifdef THREAD_ON
pre2values_thread.join();
2017-06-13 15:24:00 +08:00
#endif
2017-01-16 14:12:57 +08:00
this->setPreMap();
2017-06-13 15:24:00 +08:00
#ifdef THREAD_ON
id2entity_thread.join();
id2literal_thread.join();
2017-06-13 15:24:00 +08:00
#endif
2017-01-16 14:12:57 +08:00
//generate the string buffer for entity and literal, no need for predicate
2017-06-13 15:24:00 +08:00
//NOTICE:the total string size should not exceed 20G, assume that most strings length < 500
2017-01-16 14:12:57 +08:00
//too many empty between entity and literal, so divide them
this->setStringBuffer();
2017-06-13 15:24:00 +08:00
//NOTICE: we should build string buffer from kvstore, not string index
//Because when searching in string index, it will first check if in buffer(but the buffer is being built)
2017-01-16 14:12:57 +08:00
2017-06-13 15:24:00 +08:00
#ifndef ONLY_READ
#ifdef THREAD_ON
id2predicate_thread.join();
2017-06-13 15:24:00 +08:00
#endif
#endif
#ifdef THREAD_ON
entity2id_thread.join();
literal2id_thread.join();
predicate2id_thread.join();
sub2values_thread.join();
obj2values_thread.join();
//wait for vstree thread
vstree_thread.join();
2017-06-13 15:24:00 +08:00
#endif
2017-01-16 14:12:57 +08:00
//warm up always as finishing build(), to utilize the system buffer
//this->warmUp();
//DEBUG:the warmUp() calls query(), which will also output results, this is not we want
this->if_loaded = true;
cout << "finish load" << endl;
2016-09-18 20:01:57 +08:00
//TODO: for only-read application(like endpoint), 3 id2values trees can be closed now
//and we should load all trees on only READ mode
//HELP: just for checking infos(like kvstore)
check();
2017-06-13 15:24:00 +08:00
#ifdef ONLY_READ
this->kvstore->close_id2entity();
this->kvstore->close_id2literal();
#endif
2016-09-18 20:01:57 +08:00
return true;
}
void
Database::load_entity2id(int _mode)
{
this->kvstore->open_entity2id(_mode);
}
void
Database::load_id2entity(int _mode)
{
this->kvstore->open_id2entity(_mode);
}
void
Database::load_literal2id(int _mode)
{
this->kvstore->open_literal2id(_mode);
}
void
Database::load_id2literal(int _mode)
{
this->kvstore->open_id2literal(_mode);
}
void
Database::load_predicate2id(int _mode)
{
this->kvstore->open_predicate2id(_mode);
}
void
Database::load_id2predicate(int _mode)
{
this->kvstore->open_id2predicate(_mode);
}
void
Database::load_sub2values(int _mode)
{
this->kvstore->open_subID2values(_mode);
}
void
Database::load_obj2values(int _mode)
{
this->kvstore->open_objID2values(_mode);
}
void
Database::load_pre2values(int _mode)
{
this->kvstore->open_preID2values(_mode);
}
void
Database::load_vstree(unsigned _vstree_size)
{
(this->vstree)->loadTree(_vstree_size);
cout<<"vstree loaded"<<endl;
}
void
Database::check()
{
2017-06-13 15:24:00 +08:00
string tstr;
unsigned pid = this->kvstore->getIDByPredicate("<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>");
cout<<"check: pre "<<pid<<endl;
this->stringindex->randomAccess(pid, &tstr, false);
cout<<"string index: "<<tstr<<endl;
//cout<<"kvstore: "<<this->kvstore->getPredicateByID(pid)<<endl;
unsigned sid = this->kvstore->getIDByEntity("<http://www.Department4.University1821.edu/Course50>");
cout<<"check: sub "<<sid<<endl;
this->stringindex->randomAccess(sid, &tstr, true);
cout<<"string index: "<<tstr<<endl;
cout<<"kvstore: "<<this->kvstore->getEntityByID(sid)<<endl;
unsigned oid = this->kvstore->getIDByString("<http://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl#Course>");
cout<<"check: obj "<<oid<<endl;
this->stringindex->randomAccess(oid, &tstr, true);
cout<<"string index: "<<tstr<<endl;
cout<<"kvstore: "<<this->kvstore->getEntityByID(oid)<<endl;
unsigned* list = NULL; unsigned len = 0;
this->kvstore->getsubIDlistByobjIDpreID(oid, pid, list, len);
FILE* fp = fopen("kv.txt", "w");
for(unsigned i = 0; i < len; ++i)
{
fprintf(fp, "%u\n", list[i]);
string ts;
if(Util::is_literal_ele(list[i]))
ts = this->kvstore->getLiteralByID(list[i]);
else
ts = this->kvstore->getEntityByID(list[i]);
if(ts == "")
{
fprintf(fp, "Error in id2string\n");
}
else
{
fprintf(fp, "%s\n", ts.c_str());
}
this->stringindex->randomAccess(list[i], &tstr, true);
fprintf(fp, "string index: %s\n", ts.c_str());
}
this->stringindex->randomAccess(86006539, &tstr, true);
cout<<"check: 86006539 "<<tstr<<endl;
cout<<this->kvstore->getStringByID(86006539)<<endl;
this->stringindex->randomAccess(82855205, &tstr, true);
cout<<this->kvstore->getStringByID(82855205)<<endl;
cout<<"check: 82855205 "<<tstr<<endl;
fclose(fp);
}
2016-09-18 20:01:57 +08:00
//NOTICE: we ensure that if the unload() exists normally, then all updates have already been written to disk
//So when accidents happens, we only have to restore the databases that are in load status(inlucidng that unload
//not finished) later.
2016-09-18 20:01:57 +08:00
bool
Database::unload()
{
//TODO: do we need to update the pre2num if update queries exist??
//or we just neglect this, that is ok because pre2num is just used to count
2017-01-16 14:12:57 +08:00
delete[] this->pre2num;
this->pre2num = NULL;
2017-01-16 14:12:57 +08:00
delete this->entity_buffer;
this->entity_buffer = NULL;
2017-01-16 14:12:57 +08:00
delete this->literal_buffer;
this->literal_buffer = NULL;
2017-01-16 14:12:57 +08:00
//TODO: fflush the database file
this->vstree->saveTree();
2016-09-18 20:01:57 +08:00
delete this->vstree;
this->vstree = NULL;
2016-09-18 20:01:57 +08:00
delete this->kvstore;
this->kvstore = NULL;
delete this->stringindex;
this->stringindex = NULL;
2016-09-18 20:01:57 +08:00
this->saveDBInfoFile();
2016-09-18 20:01:57 +08:00
this->writeIDinfo();
this->initIDinfo();
this->if_loaded = false;
this->clear_update_log();
2016-09-18 20:01:57 +08:00
return true;
}
void Database::clear()
{
delete[] this->pre2num;
this->pre2num = NULL;
delete this->entity_buffer;
this->entity_buffer = NULL;
delete this->literal_buffer;
this->literal_buffer = NULL;
delete this->vstree;
this->vstree = NULL;
delete this->kvstore;
this->kvstore = NULL;
delete this->stringindex;
this->stringindex = NULL;
}
2016-09-18 20:01:57 +08:00
string
Database::getName()
{
return this->name;
}
int
2016-09-18 20:01:57 +08:00
Database::query(const string _query, ResultSet& _result_set, FILE* _fp)
{
GeneralEvaluation general_evaluation(this->vstree, this->kvstore, this->stringindex, this->pre2num, this->limitID_predicate, this->limitID_literal);
2016-09-18 20:01:57 +08:00
2017-01-16 14:12:57 +08:00
long tv_begin = Util::get_cur_time();
2016-09-18 20:01:57 +08:00
if (!general_evaluation.parseQuery(_query))
return false;
2017-01-16 14:12:57 +08:00
long tv_parse = Util::get_cur_time();
cout << "after Parsing, used " << (tv_parse - tv_begin) << "ms." << endl;
2016-09-18 20:01:57 +08:00
//TODO:output all results in JSON format, and transformed into string to client
//for select, -100 by default, -101 means error
//for update, non-negative means true(and the num is updated triples num), -1 means error
int success_num = -100;
2017-01-16 14:12:57 +08:00
//Query
if (general_evaluation.getQueryTree().getUpdateType() == QueryTree::Not_Update)
{
bool query_ret = general_evaluation.doQuery();
if(!query_ret)
{
success_num = -101;
}
2017-01-16 14:12:57 +08:00
long tv_bfget = Util::get_cur_time();
general_evaluation.getFinalResult(_result_set);
long tv_afget = Util::get_cur_time();
cout << "after getFinalResult, used " << (tv_afget - tv_bfget) << "ms." << endl;
if(_fp != NULL)
general_evaluation.setNeedOutputAnswer();
2017-01-16 14:12:57 +08:00
}
//Update
else
{
success_num = 0;
2017-01-16 14:12:57 +08:00
TripleWithObjType *update_triple = NULL;
2017-03-24 20:10:43 +08:00
TYPE_TRIPLE_NUM update_triple_num = 0;
2017-01-16 14:12:57 +08:00
if (general_evaluation.getQueryTree().getUpdateType() == QueryTree::Insert_Data || general_evaluation.getQueryTree().getUpdateType() == QueryTree::Delete_Data)
{
2017-01-16 14:12:57 +08:00
QueryTree::GroupPattern &update_pattern = general_evaluation.getQueryTree().getUpdateType() == QueryTree::Insert_Data ?
general_evaluation.getQueryTree().getInsertPatterns() : general_evaluation.getQueryTree().getDeletePatterns();
update_triple_num = update_pattern.patterns.size();
update_triple = new TripleWithObjType[update_triple_num];
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//for (int i = 0; i < (int)update_pattern.patterns.size(); i++)
for (TYPE_TRIPLE_NUM i = 0; i < update_triple_num; ++i)
2017-01-16 14:12:57 +08:00
{
TripleWithObjType::ObjectType object_type = TripleWithObjType::None;
if (update_pattern.patterns[i].object.value[0] == '<')
object_type = TripleWithObjType::Entity;
else
object_type = TripleWithObjType::Literal;
2017-01-16 14:12:57 +08:00
update_triple[i] = TripleWithObjType(update_pattern.patterns[i].subject.value,
update_pattern.patterns[i].predicate.value,
update_pattern.patterns[i].object.value, object_type);
2017-01-16 14:12:57 +08:00
}
if (general_evaluation.getQueryTree().getUpdateType() == QueryTree::Insert_Data)
{
success_num = insert(update_triple, update_triple_num);
2017-01-16 14:12:57 +08:00
}
else if (general_evaluation.getQueryTree().getUpdateType() == QueryTree::Delete_Data)
{
success_num = remove(update_triple, update_triple_num);
2017-01-16 14:12:57 +08:00
}
}
2017-01-16 14:12:57 +08:00
else if (general_evaluation.getQueryTree().getUpdateType() == QueryTree::Delete_Where || general_evaluation.getQueryTree().getUpdateType() == QueryTree::Insert_Clause ||
general_evaluation.getQueryTree().getUpdateType() == QueryTree::Delete_Clause || general_evaluation.getQueryTree().getUpdateType() == QueryTree::Modify_Clause)
{
2017-01-16 14:12:57 +08:00
general_evaluation.getQueryTree().setProjectionAsterisk();
general_evaluation.doQuery();
if (general_evaluation.getQueryTree().getUpdateType() == QueryTree::Delete_Where || general_evaluation.getQueryTree().getUpdateType() == QueryTree::Delete_Clause || general_evaluation.getQueryTree().getUpdateType() == QueryTree::Modify_Clause)
{
general_evaluation.prepareUpdateTriple(general_evaluation.getQueryTree().getDeletePatterns(), update_triple, update_triple_num);
success_num = remove(update_triple, update_triple_num);
2017-01-16 14:12:57 +08:00
}
if (general_evaluation.getQueryTree().getUpdateType() == QueryTree::Insert_Clause || general_evaluation.getQueryTree().getUpdateType() == QueryTree::Modify_Clause)
{
general_evaluation.prepareUpdateTriple(general_evaluation.getQueryTree().getInsertPatterns(), update_triple, update_triple_num);
success_num = insert(update_triple, update_triple_num);
2017-01-16 14:12:57 +08:00
}
}
general_evaluation.releaseResultStack();
delete[] update_triple;
}
long tv_final = Util::get_cur_time();
cout << "Total time used: " << (tv_final - tv_begin) << "ms." << endl;
if (general_evaluation.needOutputAnswer())
{
2017-03-24 20:10:43 +08:00
unsigned ans_num = max((long long)_result_set.ansNum - _result_set.output_offset, (long long)0);
2017-02-28 20:32:01 +08:00
if (_result_set.output_limit != -1)
ans_num = min(ans_num, _result_set.output_limit);
cout << "There has answer: " << ans_num << endl;
2017-01-16 14:12:57 +08:00
cout << "final result is : " << endl;
_result_set.output(_fp);
fprintf(_fp, "\n");
fflush(_fp); //to empty the output buffer in C (fflush(stdin) not work in GCC)
}
2016-09-18 20:01:57 +08:00
#ifdef DEBUG
cout<<"query success_num: "<<success_num<<endl;
2016-09-18 20:01:57 +08:00
#endif
//cout<<"to check: "<<this->kvstore->getEntityByID(0)<<endl;
return success_num;
2016-09-18 20:01:57 +08:00
}
//NOTICE+QUERY:to save memory for large cases, we can consider building one tree at a time(then release)
//Or read the rdf file on separate segments
//WARN:the ID type is int, and entity/literal are just separated by a limit
//which means that entity num <= 10^9 literal num <= 10^9 predicate num <= 2*10^9
//If we use unsigned as type, then max triple can be 10^9(edge case)
//If we use long long, no more problem, but wasteful
//Or we can consider divide entity and literal totally
//In distributed gStore, each machine's graph should be based on unique encoding IDs,
//and require that triples in each graph no more than a limit(maybe 10^9)
bool
Database::build(const string& _rdf_file)
{
2017-06-13 15:24:00 +08:00
//NOTICE: it is not necessary to use multiple threads here, because some process may rely on others
//In addition, the memory is a bootleneck and it is dangerous to build serveral indices at a time
//For example, if we build id2string indices using different threads, they
//all have to scan the dataset and only use a part of the data, which may be costly
//Besides, build process is already very fast, able to build freebase in 12h
2016-09-18 20:01:57 +08:00
//manage the id for a new database
this->resetIDinfo();
string ret = Util::getExactPath(_rdf_file.c_str());
long tv_build_begin = Util::get_cur_time();
//string store_path = this->name;
Util::create_dir(this->store_path);
2016-09-18 20:01:57 +08:00
string kv_store_path = store_path + "/kv_store";
Util::create_dir(kv_store_path);
string vstree_store_path = store_path + "/vs_store";
Util::create_dir(vstree_store_path);
2017-01-16 14:12:57 +08:00
string stringindex_store_path = store_path + "/stringindex_store";
2017-01-16 14:12:57 +08:00
Util::create_dir(stringindex_store_path);
2016-09-18 20:01:57 +08:00
string update_log_path = this->store_path + '/' + this->update_log;
Util::create_file(update_log_path);
string update_log_since_backup = this->store_path + '/' + this->update_log_since_backup;
Util::create_file(update_log_since_backup);
2016-09-18 20:01:57 +08:00
cout << "begin encode RDF from : " << ret << " ..." << endl;
//BETTER+TODO:now require that dataset size < memory
//to support really larger datasets, divide and insert into B+ tree and VStree
//(read the value, add list and set; update the signature, remove and reinsert)
//the query process is nearly the same
//QUERY:build each index in one thread to speed up, but the sorting case?
//one sorting order for several indexes
// to be switched to new encodeRDF method.
// this->encodeRDF(ret);
if (!this->encodeRDF_new(ret)) //<-- this->kvstore->id2* trees are closed
2016-09-18 20:01:57 +08:00
{
return false;
}
cout << "finish encode." << endl;
//cout<<"test kv"<<this->kvstore->getIDByPredicate("<contain>")<<endl;
//this->kvstore->flush();
delete this->kvstore;
this->kvstore = NULL;
//sync();
//cout << "sync kvstore" << endl;
//this->kvstore->release();
//cout<<"release kvstore"<<endl;
2016-10-25 15:10:52 +08:00
long before_vstree = Util::get_cur_time();
2016-09-18 20:01:57 +08:00
//(this->kvstore)->open();
string _entry_file = this->getSignatureBFile();
cout << "begin build VS-Tree on " << ret << "..." << endl;
//NOTICE: we can use larger buffer for vstree in building process, because it does not compete with others
//we only need to build vstree in this phase(no need for id tuples anymore)
//TODO: acquire this arg from memory manager
unsigned vstree_cache_size = 4 * LRUCache::DEFAULT_CAPACITY;
//BETTER: we should set the parameter according to current memory usage
(this->vstree)->buildTree(_entry_file, vstree_cache_size);
2016-09-18 20:01:57 +08:00
long tv_build_end = Util::get_cur_time();
2016-10-25 15:10:52 +08:00
2017-01-16 14:12:57 +08:00
cout << "after build vstree, used " << (tv_build_end - before_vstree) << "ms." << endl;
2016-09-18 20:01:57 +08:00
cout << "after build, used " << (tv_build_end - tv_build_begin) << "ms." << endl;
cout << "finish build VS-Tree." << endl;
//this->vstree->saveTree();
//delete this->vstree;
//this->vstree = NULL;
2016-09-18 20:01:57 +08:00
//sync();
//cout << "sync vstree" << endl;
//TODO: use fopen w+ to remove signature.binary file
2016-09-18 20:01:57 +08:00
//string cmd = "rm -rf " + _entry_file;
//system(cmd.c_str());
//cout << "signature file removed" << endl;
return true;
}
//root Path of this DB + sixTuplesFile
string
Database::getSixTuplesFile()
{
return this->getStorePath() + "/" + this->six_tuples_file;
}
//root Path of this DB + signatureBFile
2016-09-18 20:01:57 +08:00
string
Database::getSignatureBFile()
{
return this->getStorePath() + "/" + this->signature_binary_file;
}
//root Path of this DB + DBInfoFile
2016-09-18 20:01:57 +08:00
string
Database::getDBInfoFile()
{
return this->getStorePath() + "/" + this->db_info_file;
}
string
Database::getIDTuplesFile()
{
return this->getStorePath() + "/" + this->id_tuples_file;
}
2016-09-18 20:01:57 +08:00
bool
Database::saveDBInfoFile()
{
FILE* filePtr = fopen(this->getDBInfoFile().c_str(), "wb");
if (filePtr == NULL)
{
cout << "error, can not create db info file. @Database::saveDBInfoFile" << endl;
2016-09-18 20:01:57 +08:00
return false;
}
fseek(filePtr, 0, SEEK_SET);
fwrite(&this->triples_num, sizeof(int), 1, filePtr);
fwrite(&this->entity_num, sizeof(int), 1, filePtr);
fwrite(&this->sub_num, sizeof(int), 1, filePtr);
fwrite(&this->pre_num, sizeof(int), 1, filePtr);
fwrite(&this->literal_num, sizeof(int), 1, filePtr);
fwrite(&this->encode_mode, sizeof(int), 1, filePtr);
fclose(filePtr);
//Util::triple_num = this->triples_num;
//Util::pre_num = this->pre_num;
//Util::entity_num = this->entity_num;
//Util::literal_num = this->literal_num;
2016-09-18 20:01:57 +08:00
return true;
}
bool
Database::loadDBInfoFile()
{
FILE* filePtr = fopen(this->getDBInfoFile().c_str(), "rb");
if (filePtr == NULL)
{
cout << "error, can not open db info file. @Database::loadDBInfoFile" << endl;
2016-09-18 20:01:57 +08:00
return false;
}
fseek(filePtr, 0, SEEK_SET);
fread(&this->triples_num, sizeof(int), 1, filePtr);
fread(&this->entity_num, sizeof(int), 1, filePtr);
fread(&this->sub_num, sizeof(int), 1, filePtr);
fread(&this->pre_num, sizeof(int), 1, filePtr);
fread(&this->literal_num, sizeof(int), 1, filePtr);
fread(&this->encode_mode, sizeof(int), 1, filePtr);
fclose(filePtr);
//Util::triple_num = this->triples_num;
//Util::pre_num = this->pre_num;
//Util::entity_num = this->entity_num;
//Util::literal_num = this->literal_num;
2016-09-18 20:01:57 +08:00
return true;
}
string
Database::getStorePath()
{
return this->store_path;
2016-09-18 20:01:57 +08:00
}
//encode relative signature data of the query graph
void
Database::buildSparqlSignature(SPARQLquery & _sparql_q)
{
vector<BasicQuery*>& _query_union = _sparql_q.getBasicQueryVec();
2017-03-24 20:10:43 +08:00
for (unsigned i_bq = 0; i_bq < _query_union.size(); i_bq++)
2016-09-18 20:01:57 +08:00
{
BasicQuery* _basic_q = _query_union[i_bq];
_basic_q->encodeBasicQuery(this->kvstore, _sparql_q.getQueryVar());
}
}
bool
2017-03-24 20:10:43 +08:00
Database::calculateEntityBitSet(TYPE_ENTITY_LITERAL_ID _entity_id, EntityBitSet & _bitset)
2016-09-18 20:01:57 +08:00
{
2017-03-24 20:10:43 +08:00
unsigned _list_len = 0;
2016-09-18 20:01:57 +08:00
//when as subject
2017-03-24 20:10:43 +08:00
unsigned* _polist = NULL;
2016-09-18 20:01:57 +08:00
(this->kvstore)->getpreIDobjIDlistBysubID(_entity_id, _polist, _list_len);
//Triple _triple;
//_triple.subject = (this->kvstore)->getEntityByID(_entity_id);
2017-03-24 20:10:43 +08:00
for (unsigned i = 0; i < _list_len; i += 2)
2016-09-18 20:01:57 +08:00
{
2017-03-24 20:10:43 +08:00
TYPE_PREDICATE_ID _pre_id = _polist[i];
TYPE_ENTITY_LITERAL_ID _obj_id = _polist[i + 1];
//_triple.object = (this->kvstore)->getEntityByID(_obj_id);
//if (_triple.object == "")
//{
//_triple.object = (this->kvstore)->getLiteralByID(_obj_id);
//}
//_triple.predicate = (this->kvstore)->getPredicateByID(_pre_id);
//this->encodeTriple2SubEntityBitSet(_bitset, &_triple);
this->encodeTriple2SubEntityBitSet(_bitset, _pre_id, _obj_id);
2016-09-18 20:01:57 +08:00
}
delete[] _polist;
2016-09-18 20:01:57 +08:00
//when as object
2017-03-24 20:10:43 +08:00
unsigned* _pslist = NULL;
2016-09-18 20:01:57 +08:00
_list_len = 0;
(this->kvstore)->getpreIDsubIDlistByobjID(_entity_id, _pslist, _list_len);
//_triple.object = (this->kvstore)->getEntityByID(_entity_id);
2017-03-24 20:10:43 +08:00
for (unsigned i = 0; i < _list_len; i += 2)
2016-09-18 20:01:57 +08:00
{
2017-03-24 20:10:43 +08:00
TYPE_PREDICATE_ID _pre_id = _pslist[i];
TYPE_ENTITY_LITERAL_ID _sub_id = _pslist[i + 1];
//_triple.subject = (this->kvstore)->getEntityByID(_sub_id);
//_triple.predicate = (this->kvstore)->getPredicateByID(_pre_id);
//this->encodeTriple2ObjEntityBitSet(_bitset, &_triple);
this->encodeTriple2ObjEntityBitSet(_bitset, _pre_id, _sub_id);
2016-09-18 20:01:57 +08:00
}
delete[] _pslist;
2016-09-18 20:01:57 +08:00
return true;
}
//encode Triple into subject SigEntry
bool
Database::encodeTriple2SubEntityBitSet(EntityBitSet& _bitset, const Triple* _p_triple)
{
2017-03-24 20:10:43 +08:00
TYPE_PREDICATE_ID _pre_id = (this->kvstore)->getIDByPredicate(_p_triple->predicate);
if(_pre_id != INVALID_PREDICATE_ID)
2016-09-18 20:01:57 +08:00
{
Signature::encodePredicate2Entity(_bitset, _pre_id, Util::EDGE_OUT);
2016-09-18 20:01:57 +08:00
}
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID _obj_id = (this->kvstore)->getIDByEntity(_p_triple->object);
if(_obj_id == INVALID_ENTITY_LITERAL_ID)
2016-09-18 20:01:57 +08:00
{
_obj_id = (this->kvstore)->getIDByLiteral(_p_triple->object);
2016-09-18 20:01:57 +08:00
}
2017-03-24 20:10:43 +08:00
if(_obj_id != INVALID_ENTITY_LITERAL_ID)
2016-09-18 20:01:57 +08:00
{
Signature::encodeStr2Entity(_bitset, _obj_id, Util::EDGE_OUT);
2016-09-18 20:01:57 +08:00
}
//if (this->encode_mode == Database::ID_MODE)
//{
//}
//else if (this->encode_mode == Database::STRING_MODE)
//{
//Signature::encodeStr2Entity((_p_triple->object).c_str(), _bitset);
//}
2016-09-18 20:01:57 +08:00
return true;
}
bool
Database::encodeTriple2SubEntityBitSet(EntityBitSet& _bitset, TYPE_PREDICATE_ID _pre_id, TYPE_ENTITY_LITERAL_ID _obj_id)
{
Signature::encodeEdge2Entity(_bitset, _pre_id, _obj_id, Util::EDGE_OUT);
return true;
}
2016-09-18 20:01:57 +08:00
//encode Triple into object SigEntry
bool
Database::encodeTriple2ObjEntityBitSet(EntityBitSet& _bitset, const Triple* _p_triple)
{
2017-03-24 20:10:43 +08:00
TYPE_PREDICATE_ID _pre_id = (this->kvstore)->getIDByPredicate(_p_triple->predicate);
if(_pre_id != INVALID_PREDICATE_ID)
2016-09-18 20:01:57 +08:00
{
Signature::encodePredicate2Entity(_bitset, _pre_id, Util::EDGE_IN);
2016-09-18 20:01:57 +08:00
}
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID _sub_id = (this->kvstore)->getIDByEntity(_p_triple->subject);
if(_sub_id != INVALID_ENTITY_LITERAL_ID)
2016-09-18 20:01:57 +08:00
{
Signature::encodeStr2Entity(_bitset, _sub_id, Util::EDGE_IN);
2016-09-18 20:01:57 +08:00
}
//Signature::encodePredicate2Entity(_pre_id, _bitset, Util::EDGE_IN);
//if (this->encode_mode == Database::ID_MODE)
//{
//}
//else if (this->encode_mode == Database::STRING_MODE)
//{
//Signature::encodeStr2Entity((_p_triple->subject).c_str(), _bitset);
//}
2016-09-18 20:01:57 +08:00
return true;
}
bool
Database::encodeTriple2ObjEntityBitSet(EntityBitSet& _bitset, TYPE_PREDICATE_ID _pre_id, TYPE_ENTITY_LITERAL_ID _sub_id)
{
Signature::encodeEdge2Entity(_bitset, _pre_id, _sub_id, Util::EDGE_IN);
return true;
}
2016-09-18 20:01:57 +08:00
//check whether the relative 3-tuples exist usually, through sp2olist
bool
2017-03-24 20:10:43 +08:00
Database::exist_triple(TYPE_ENTITY_LITERAL_ID _sub_id, TYPE_PREDICATE_ID _pre_id, TYPE_ENTITY_LITERAL_ID _obj_id)
2016-09-18 20:01:57 +08:00
{
2017-03-24 20:10:43 +08:00
unsigned* _objidlist = NULL;
unsigned _list_len = 0;
2016-09-18 20:01:57 +08:00
(this->kvstore)->getobjIDlistBysubIDpreID(_sub_id, _pre_id, _objidlist, _list_len);
bool is_exist = false;
2017-03-24 20:10:43 +08:00
// for(unsigned i = 0; i < _list_len; i ++)
2016-09-18 20:01:57 +08:00
// {
// if(_objidlist[i] == _obj_id)
// {
// is_exist = true;
// break;
// }
// }
2017-03-24 20:10:43 +08:00
if (Util::bsearch_int_uporder(_obj_id, _objidlist, _list_len) != INVALID)
//if (Util::bsearch_int_uporder(_obj_id, _objidlist, _list_len) != -1)
2016-09-18 20:01:57 +08:00
{
is_exist = true;
}
delete[] _objidlist;
return is_exist;
}
bool Database::exist_triple(const TripleWithObjType& _triple) {
int sub_id = this->kvstore->getIDByEntity(_triple.getSubject());
if (sub_id == -1) {
return false;
}
int pre_id = this->kvstore->getIDByPredicate(_triple.getPredicate());
if (pre_id == -1) {
return false;
}
int obj_id = -1;
if (_triple.isObjEntity()) {
obj_id = this->kvstore->getIDByEntity(_triple.getObject());
}
else if (_triple.isObjLiteral()) {
obj_id = this->kvstore->getIDByLiteral(_triple.getObject());
}
if (obj_id == -1) {
return false;
}
return exist_triple(sub_id, pre_id, obj_id);
}
2016-09-18 20:01:57 +08:00
//NOTICE: all constants are transfered to ids in memory
//this maybe not ok when size is too large!
bool
Database::encodeRDF_new(const string _rdf_file)
{
#ifdef DEBUG
//cout<< "now to log!!!" << endl;
2016-09-18 20:01:57 +08:00
Util::logging("In encodeRDF_new");
//cout<< "end log!!!" << endl;
2016-09-18 20:01:57 +08:00
#endif
//TYPE_ENTITY_LITERAL_ID** _p_id_tuples = NULL;
ID_TUPLE* _p_id_tuples = NULL;
2017-03-24 20:10:43 +08:00
TYPE_TRIPLE_NUM _id_tuples_max = 0;
2016-09-18 20:01:57 +08:00
2016-10-25 15:10:52 +08:00
long t1 = Util::get_cur_time();
//NOTICE: in encode process, we should not divide ID of entity and literal totally apart, i.e. entity is a system
//while literal is another system
//The reason is that if we divide entity and literal, then in triple_array and final_result we can not decide a given
//ID is entity or not
//(one way is to add a more structure to tell us which is entity, but this is costly)
2016-09-18 20:01:57 +08:00
//map sub2id, pre2id, entity/literal in obj2id, store in kvstore, encode RDF data into signature
if (!this->sub2id_pre2id_obj2id_RDFintoSignature(_rdf_file))
2016-09-18 20:01:57 +08:00
{
return false;
}
//TODO+BETTER:after encode, we can know the exact entity num, so we can decide if our system can run this dataset
//based on the current available memory(need a memory manager globally)
//If unbale to run, should exit and give a prompt
//User can modify the config file to run anyway, but gStore will not ensure correctness
//What is more, in load process, we also need to decide if gStore can run it
//
//TODO+BETTER: a global ID manager module, should be based on type template
//this can be used in vstree, storage and Database
2016-10-25 15:10:52 +08:00
long t2 = Util::get_cur_time();
2017-01-16 14:12:57 +08:00
cout << "after encode, used " << (t2 - t1) << "ms." << endl;
2016-10-25 15:10:52 +08:00
2017-01-16 14:12:57 +08:00
//build stringindex before this->kvstore->id2* trees are closed
this->stringindex->setNum(StringIndexFile::Entity, this->entity_num);
this->stringindex->setNum(StringIndexFile::Literal, this->literal_num);
this->stringindex->setNum(StringIndexFile::Predicate, this->pre_num);
this->stringindex->save(*this->kvstore);
2017-06-13 15:24:00 +08:00
//NOTICE: the string index can be parallized with readIDTuples and others
//However, we should read and build otehr indices only after the 6 trees and string index closed
//(to save memory)
long t3 = Util::get_cur_time();
cout << "after stringindex, used " << (t3 - t2) << "ms." << endl;
//cout<<"special id: "<<this->kvstore->getIDByEntity("<point7>")<<endl;
2016-09-18 20:01:57 +08:00
//NOTICE:close these trees now to save memory
this->kvstore->close_entity2id();
this->kvstore->close_id2entity();
this->kvstore->close_literal2id();
this->kvstore->close_id2literal();
this->kvstore->close_predicate2id();
this->kvstore->close_id2predicate();
long t4 = Util::get_cur_time();
cout << "id2string and string2id closed, used " << (t4 - t3) << "ms." << endl;
//after closing the 6 trees, read the id tuples again, and remove the file given num, a dimension,return a pointer
//NOTICE: the file can also be used for debugging, and a program can start just from the id tuples file
//(if copy the 6 id2string trees, no need to parse each time)
this->readIDTuples(_p_id_tuples);
2017-06-13 15:24:00 +08:00
//NOTICE: we can also build the signature when we are reading triples, and
//update to the corresponding position in the signature file
//However, this may be costly due to frequent read/write
long t5 = Util::get_cur_time();
cout << "id tuples read, used " << (t5 - t4) << "ms." << endl;
//TODO: how to set the buffer of trees is a big question, fully utilize the availiable memory
//this->kvstore->build_subID2values(_p_id_tuples, this->triples_num);
this->build_s2xx(_p_id_tuples);
long t6 = Util::get_cur_time();
cout << "after s2xx, used " << (t6 - t5) << "ms." << endl;
2016-10-25 15:10:52 +08:00
//this->kvstore->build_objID2values(_p_id_tuples, this->triples_num);
this->build_o2xx(_p_id_tuples);
long t7 = Util::get_cur_time();
cout << "after o2xx, used " << (t7 - t6) << "ms." << endl;
2016-10-25 15:10:52 +08:00
//this->kvstore->build_preID2values(_p_id_tuples, this->triples_num);
this->build_p2xx(_p_id_tuples);
long t8 = Util::get_cur_time();
cout << "after p2xx, used " << (t8 - t7) << "ms." << endl;
2016-09-18 20:01:57 +08:00
//WARN:we must free the memory for id_tuples array
delete[] _p_id_tuples;
2017-06-13 15:24:00 +08:00
//for (TYPE_TRIPLE_NUM i = 0; i < this->triples_num; ++i)
//{
//delete[] _p_id_tuples[i];
//}
//delete[] _p_id_tuples;
2016-09-18 20:01:57 +08:00
2017-06-13 15:24:00 +08:00
//NOTICE: we should build vstree after id tuples are freed(to save memory)
2016-09-18 20:01:57 +08:00
bool flag = this->saveDBInfoFile();
if (!flag)
{
return false;
}
long t9 = Util::get_cur_time();
cout << "db info saved, used " << (t9 - t8) << "ms." << endl;
//Util::logging("finish encodeRDF_new");
2016-09-18 20:01:57 +08:00
return true;
}
void
Database::readIDTuples(ID_TUPLE*& _p_id_tuples)
{
_p_id_tuples = NULL;
string fname = this->getIDTuplesFile();
FILE* fp = fopen(fname.c_str(), "rb");
if(fp == NULL)
{
cout<<"error in Database::readIDTuples() -- unable to open file "<<fname<<endl;
return;
}
//NOTICE: avoid to break the unsigned limit, size_t is used in Linux C
//size_t means long unsigned int in 64-bit machine
//unsigned long total_num = this->triples_num * 3;
//_p_id_tuples = new TYPE_ENTITY_LITERAL_ID[total_num];
_p_id_tuples = new ID_TUPLE[this->triples_num];
fread(_p_id_tuples, sizeof(ID_TUPLE), this->triples_num, fp);
fclose(fp);
//NOTICE: choose to empty the file or not
Util::empty_file(fname.c_str());
//return NULL;
}
void
Database::build_s2xx(ID_TUPLE* _p_id_tuples)
{
//NOTICE: STL sort() is generally fatser than C qsort, especially when qsort is very slow
//STL sort() not only use qsort algorithm, it can also choose heap-sort method
sort(_p_id_tuples, _p_id_tuples + this->triples_num, Util::spo_cmp_idtuple);
//qsort(_p_id_tuples, this->triples_num, sizeof(int*), Util::_spo_cmp);
this->kvstore->build_subID2values(_p_id_tuples, this->triples_num);
//save all entity_signature into binary file
string sig_binary_file = this->getSignatureBFile();
FILE* sig_fp = fopen(sig_binary_file.c_str(), "wb");
if (sig_fp == NULL)
{
cout << "Failed to open : " << sig_binary_file << endl;
return;
}
//NOTICE:in build process, all IDs are continuous growing
EntityBitSet tmp_bitset;
tmp_bitset.reset();
2017-03-24 20:10:43 +08:00
for(TYPE_ENTITY_LITERAL_ID i = 0; i < this->entity_num; ++i)
{
SigEntry* sig = new SigEntry(EntitySig(tmp_bitset), -1);
fwrite(sig, sizeof(SigEntry), 1, sig_fp);
delete sig;
}
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID prev_entity_id = INVALID_ENTITY_LITERAL_ID;
//int prev_entity_id = -1;
//NOTICE: i*3 + j maybe break the unsigned limit
//for (unsigned long i = 0; i < this->triples_num; ++i)
2017-03-24 20:10:43 +08:00
for (TYPE_TRIPLE_NUM i = 0; i < this->triples_num; ++i)
{
TYPE_ENTITY_LITERAL_ID subid = _p_id_tuples[i].subid;
TYPE_PREDICATE_ID preid = _p_id_tuples[i].preid;
TYPE_ENTITY_LITERAL_ID objid = _p_id_tuples[i].objid;
//TYPE_ENTITY_LITERAL_ID subid = _p_id_tuples[i*3+0];
//TYPE_PREDICATE_ID preid = _p_id_tuples[i*3+1];
//TYPE_ENTITY_LITERAL_ID objid = _p_id_tuples[i*3+2];
if(subid != prev_entity_id)
{
2017-03-24 20:10:43 +08:00
if(prev_entity_id != INVALID_ENTITY_LITERAL_ID)
//if(prev_entity_id != -1)
{
#ifdef DEBUG
//if(prev_entity_id == 13)
//{
//cout<<"yy: "<<Signature::BitSet2str(tmp_bitset)<<endl;
//}
#endif
//NOTICE: we must do twice, we need to locate on the same entry to deal, so we must place in order
SigEntry* sig = new SigEntry(EntitySig(tmp_bitset), prev_entity_id);
//write the sig entry
fseek(sig_fp, sizeof(SigEntry) * prev_entity_id, SEEK_SET);
fwrite(sig, sizeof(SigEntry), 1, sig_fp);
//_all_bitset |= *_entity_bitset[i];
delete sig;
}
prev_entity_id = subid;
tmp_bitset.reset();
Signature::encodeEdge2Entity(tmp_bitset, preid, objid, Util::EDGE_OUT);
//Signature::encodePredicate2Entity(preid, _tmp_bitset, Util::EDGE_OUT);
//Signature::encodeStr2Entity(objid, _tmp_bitset);
}
else
{
Signature::encodeEdge2Entity(tmp_bitset, preid, objid, Util::EDGE_OUT);
}
}
//NOTICE: remember to write the last entity's signature
2017-03-24 20:10:43 +08:00
if(prev_entity_id != INVALID_ENTITY_LITERAL_ID)
//if(prev_entity_id != -1)
{
SigEntry* sig = new SigEntry(EntitySig(tmp_bitset), prev_entity_id);
//write the sig entry
fseek(sig_fp, sizeof(SigEntry) * prev_entity_id, SEEK_SET);
fwrite(sig, sizeof(SigEntry), 1, sig_fp);
//_all_bitset |= *_entity_bitset[i];
delete sig;
}
fclose(sig_fp);
}
void
Database::build_o2xx(ID_TUPLE* _p_id_tuples)
{
sort(_p_id_tuples, _p_id_tuples + this->triples_num, Util::ops_cmp_idtuple);
//qsort(_p_id_tuples, this->triples_num, sizeof(int*), Util::_ops_cmp);
this->kvstore->build_objID2values(_p_id_tuples, this->triples_num);
//save all entity_signature into binary file
string sig_binary_file = this->getSignatureBFile();
//NOTICE: this is different from build_s2xx, the file already exists
FILE* sig_fp = fopen(sig_binary_file.c_str(), "rb+");
if (sig_fp == NULL)
{
cout << "Failed to open : " << sig_binary_file << endl;
return;
}
//NOTICE:in build process, all IDs are continuous growing
//TODO:use unsigned for type and -1 should be changed
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID prev_entity_id = INVALID_ENTITY_LITERAL_ID;
//int prev_entity_id = -1;
EntityBitSet tmp_bitset;
//NOTICE: i*3 + j maybe break the unsigned limit
//for (unsigned long i = 0; i < this->triples_num; ++i)
2017-03-24 20:10:43 +08:00
for (TYPE_TRIPLE_NUM i = 0; i < this->triples_num; ++i)
{
TYPE_ENTITY_LITERAL_ID subid = _p_id_tuples[i].subid;
TYPE_PREDICATE_ID preid = _p_id_tuples[i].preid;
TYPE_ENTITY_LITERAL_ID objid = _p_id_tuples[i].objid;
//TYPE_ENTITY_LITERAL_ID subid = _p_id_tuples[i*3+0];
//TYPE_PREDICATE_ID preid = _p_id_tuples[i*3+1];
//TYPE_ENTITY_LITERAL_ID objid = _p_id_tuples[i*3+2];
if(Util::is_literal_ele(objid))
{
continue;
}
if(objid != prev_entity_id)
{
2017-03-24 20:10:43 +08:00
//if(prev_entity_id != -1)
if(prev_entity_id != INVALID_ENTITY_LITERAL_ID)
{
//NOTICE: we must do twice, we need to locate on the same entry to deal, so we must place in order
fseek(sig_fp, sizeof(SigEntry) * prev_entity_id, SEEK_SET);
SigEntry* old_sig = new SigEntry();
fread(old_sig, sizeof(SigEntry), 1, sig_fp);
#ifdef DEBUG
//cout<<"to write a signature: "<<prev_entity_id<<endl;
//cout<<prev_entity_id<<endl;
//if(prev_entity_id == 13)
//{
//cout<<"yy: "<<Signature::BitSet2str(tmp_bitset)<<endl;
//}
#endif
tmp_bitset |= old_sig->getEntitySig().entityBitSet;
delete old_sig;
#ifdef DEBUG
//if(prev_entity_id == 13)
//{
//cout<<"yy: "<<Signature::BitSet2str(tmp_bitset)<<endl;
//}
#endif
//write the sig entry
SigEntry* sig = new SigEntry(EntitySig(tmp_bitset), prev_entity_id);
fseek(sig_fp, sizeof(SigEntry) * prev_entity_id, SEEK_SET);
fwrite(sig, sizeof(SigEntry), 1, sig_fp);
//_all_bitset |= *_entity_bitset[i];
delete sig;
}
#ifdef DEBUG
//cout<<"now is a new signature: "<<objid<<endl;
#endif
prev_entity_id = objid;
tmp_bitset.reset();
//cout<<"bitset reset"<<endl;
Signature::encodeEdge2Entity(tmp_bitset, preid, subid, Util::EDGE_IN);
//cout<<"edge encoded"<<endl;
//Signature::encodePredicate2Entity(preid, _tmp_bitset, Util::EDGE_IN);
//Signature::encodeStr2Entity(subid, _tmp_bitset);
}
else
{
//cout<<"same signature: "<<objid<<" "<<preid<<" "<<subid<<endl;
Signature::encodeEdge2Entity(tmp_bitset, preid, subid, Util::EDGE_IN);
//cout<<"edge encoded"<<endl;
}
}
//cout<<"loop ended!"<<endl;
//NOTICE: remember to write the last entity's signature
2017-03-24 20:10:43 +08:00
if(prev_entity_id != INVALID_ENTITY_LITERAL_ID)
//if(prev_entity_id != -1)
{
//cout<<"to write the last signature"<<endl;
fseek(sig_fp, sizeof(SigEntry) * prev_entity_id, SEEK_SET);
SigEntry* old_sig = new SigEntry();
fread(old_sig, sizeof(SigEntry), 1, sig_fp);
tmp_bitset |= old_sig->getEntitySig().entityBitSet;
delete old_sig;
//write the sig entry
SigEntry* sig = new SigEntry(EntitySig(tmp_bitset), prev_entity_id);
fseek(sig_fp, sizeof(SigEntry) * prev_entity_id, SEEK_SET);
fwrite(sig, sizeof(SigEntry), 1, sig_fp);
//_all_bitset |= *_entity_bitset[i];
delete sig;
}
fclose(sig_fp);
}
void
Database::build_p2xx(ID_TUPLE* _p_id_tuples)
{
sort(_p_id_tuples, _p_id_tuples + this->triples_num, Util::pso_cmp_idtuple);
//qsort(_p_id_tuples, this->triples_num, sizeof(int*), Util::_pso_cmp);
this->kvstore->build_preID2values(_p_id_tuples, this->triples_num);
}
//NOTICE:in here and there in the insert/delete, we may get the maxium tuples num first
//and so we can avoid the cost of memcpy(scan quickly or use wc -l)
//However, if use compressed RDF format, how can we do it fi not using parser?
//CONSIDER: just an estimated value is ok or use vector!!!(but vector also copy when enlarge)
//and read file line numbers are also costly!
2016-09-18 20:01:57 +08:00
bool
Database::sub2id_pre2id_obj2id_RDFintoSignature(const string _rdf_file)
2016-09-18 20:01:57 +08:00
{
//NOTICE: if we keep the id_tuples always in memory, i.e. [unsigned*] each unsigned* is [3]
//then for freebase, there is 2.5B triples. the mmeory cost of this array is 25*10^8*3*4 + 25*10^8*8 = 50G
//
//So I choose not to store the id_tuples in memory in this function, but to store them in file and read again after this function
//Notice that the most memory-costly part of building process is this function, setup 6 trees together
//later we can read the id_tuples and stored as [num][3], only cost 25*10^8*3*4 = 30G, and later we only build one tree at a time
string fname = this->getIDTuplesFile();
FILE* fp = fopen(fname.c_str(), "wb");
if(fp == NULL)
{
cout<<"error in Database::sub2id_pre2id_obj2id() -- unable to open file to write "<<fname<<endl;
return false;
}
ID_TUPLE tmp_id_tuple;
//NOTICE: avoid to break the unsigned limit, size_t is used in Linux C
//size_t means long unsigned int in 64-bit machine
//fread(_p_id_tuples, sizeof(TYPE_ENTITY_LITERAL_ID), total_num, fp);
2017-03-24 20:10:43 +08:00
TYPE_TRIPLE_NUM _id_tuples_size;
2016-09-18 20:01:57 +08:00
{
//initial
//_id_tuples_max = 10 * 1000 * 1000;
//_p_id_tuples = new TYPE_ENTITY_LITERAL_ID*[_id_tuples_max];
//_id_tuples_size = 0;
2016-09-18 20:01:57 +08:00
this->sub_num = 0;
this->pre_num = 0;
this->entity_num = 0;
this->literal_num = 0;
this->triples_num = 0;
(this->kvstore)->open_entity2id(KVstore::CREATE_MODE);
(this->kvstore)->open_id2entity(KVstore::CREATE_MODE);
(this->kvstore)->open_predicate2id(KVstore::CREATE_MODE);
(this->kvstore)->open_id2predicate(KVstore::CREATE_MODE);
(this->kvstore)->open_literal2id(KVstore::CREATE_MODE);
(this->kvstore)->open_id2literal(KVstore::CREATE_MODE);
}
//Util::logging("finish initial sub2id_pre2id_obj2id");
cout << "finish initial sub2id_pre2id_obj2id" << endl;
2016-09-18 20:01:57 +08:00
2017-01-16 14:12:57 +08:00
//BETTER?:close the stdio buffer sync??
2016-09-18 20:01:57 +08:00
ifstream _fin(_rdf_file.c_str());
if (!_fin)
{
cout << "sub2id&pre2id&obj2id: Fail to open : " << _rdf_file << endl;
2016-09-18 20:01:57 +08:00
//exit(0);
return false;
}
string _six_tuples_file = this->getSixTuplesFile();
ofstream _six_tuples_fout(_six_tuples_file.c_str());
if (!_six_tuples_fout)
{
cout << "sub2id&pre2id&obj2id: Fail to open: " << _six_tuples_file << endl;
2016-09-18 20:01:57 +08:00
//exit(0);
return false;
}
TripleWithObjType* triple_array = new TripleWithObjType[RDFParser::TRIPLE_NUM_PER_GROUP];
//don't know the number of entity
//pre allocate entitybitset_max EntityBitSet for storing signature, double the space until the _entity_bitset is used up.
//
//int entitybitset_max = 10000000; //set larger to avoid the copy cost
//int entitybitset_max = 10000;
//EntityBitSet** _entity_bitset = new EntityBitSet*[entitybitset_max];
//for (int i = 0; i < entitybitset_max; i++)
//{
//_entity_bitset[i] = new EntityBitSet();
//_entity_bitset[i]->reset();
//}
//EntityBitSet _tmp_bitset;
2016-09-18 20:01:57 +08:00
//parse a file
RDFParser _parser(_fin);
2017-06-13 15:24:00 +08:00
//Util::logging("==> while(true)");
2016-09-18 20:01:57 +08:00
while (true)
{
int parse_triple_num = 0;
_parser.parseFile(triple_array, parse_triple_num);
{
stringstream _ss;
_ss << "finish rdfparser" << this->triples_num << endl;
//Util::logging(_ss.str());
2016-09-18 20:01:57 +08:00
cout << _ss.str() << endl;
}
2017-01-16 14:12:57 +08:00
cout << "after info in sub2id_" << endl;
2016-09-18 20:01:57 +08:00
if (parse_triple_num == 0)
{
break;
}
//Process the Triple one by one
for (int i = 0; i < parse_triple_num; i++)
{
//BETTER: assume that no duplicate triples in RDF for building
//should judge first? using exist_triple()
//or sub triples_num in build_subID2values(judge if two neighbor triples are same)
2016-09-18 20:01:57 +08:00
this->triples_num++;
//if the _id_tuples exceeds, double the space
//if (_id_tuples_size == _id_tuples_max)
//{
//TYPE_TRIPLE_NUM _new_tuples_len = _id_tuples_max * 2;
//TYPE_ENTITY_LITERAL_ID** _new_id_tuples = new TYPE_ENTITY_LITERAL_ID*[_new_tuples_len];
//memcpy(_new_id_tuples, _p_id_tuples, sizeof(TYPE_ENTITY_LITERAL_ID*) * _id_tuples_max);
//delete[] _p_id_tuples;
//_p_id_tuples = _new_id_tuples;
//_id_tuples_max = _new_tuples_len;
//}
2016-09-18 20:01:57 +08:00
2017-06-13 15:24:00 +08:00
//TODO: use 3 threads to deal with sub, obj, pre separately
//However, the cost of new /delete threads may be high
//We need a thread pool!
2016-09-18 20:01:57 +08:00
// For subject
// (all subject is entity, some object is entity, the other is literal)
string _sub = triple_array[i].getSubject();
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID _sub_id = (this->kvstore)->getIDByEntity(_sub);
if (_sub_id == INVALID_ENTITY_LITERAL_ID)
//if (_sub_id == -1)
2016-09-18 20:01:57 +08:00
{
//_sub_id = this->entity_num;
_sub_id = this->allocEntityID();
//this->entity_num++;
(this->kvstore)->setIDByEntity(_sub, _sub_id);
(this->kvstore)->setEntityByID(_sub_id, _sub);
}
// For predicate
string _pre = triple_array[i].getPredicate();
2017-03-24 20:10:43 +08:00
TYPE_PREDICATE_ID _pre_id = (this->kvstore)->getIDByPredicate(_pre);
if (_pre_id == INVALID_PREDICATE_ID)
//if (_pre_id == -1)
2016-09-18 20:01:57 +08:00
{
//_pre_id = this->pre_num;
_pre_id = this->allocPredicateID();
//this->pre_num++;
(this->kvstore)->setIDByPredicate(_pre, _pre_id);
(this->kvstore)->setPredicateByID(_pre_id, _pre);
}
// For object
string _obj = triple_array[i].getObject();
2017-03-24 20:10:43 +08:00
//int _obj_id = -1;
TYPE_ENTITY_LITERAL_ID _obj_id = INVALID_ENTITY_LITERAL_ID;
2016-09-18 20:01:57 +08:00
// obj is entity
if (triple_array[i].isObjEntity())
{
_obj_id = (this->kvstore)->getIDByEntity(_obj);
2017-03-24 20:10:43 +08:00
if (_obj_id == INVALID_ENTITY_LITERAL_ID)
//if (_obj_id == -1)
2016-09-18 20:01:57 +08:00
{
//_obj_id = this->entity_num;
_obj_id = this->allocEntityID();
//this->entity_num++;
(this->kvstore)->setIDByEntity(_obj, _obj_id);
(this->kvstore)->setEntityByID(_obj_id, _obj);
}
}
//obj is literal
if (triple_array[i].isObjLiteral())
{
_obj_id = (this->kvstore)->getIDByLiteral(_obj);
2017-03-24 20:10:43 +08:00
if (_obj_id == INVALID_ENTITY_LITERAL_ID)
//if (_obj_id == -1)
2016-09-18 20:01:57 +08:00
{
//_obj_id = Util::LITERAL_FIRST_ID + (this->literal_num);
_obj_id = this->allocLiteralID();
//this->literal_num++;
(this->kvstore)->setIDByLiteral(_obj, _obj_id);
(this->kvstore)->setLiteralByID(_obj_id, _obj);
//#ifdef DEBUG
//if(_obj == "\"Bob\"")
//{
//cout << "this is id for Bob: " << _obj_id << endl;
//}
//cout<<"literal should be bob: " << kvstore->getLiteralByID(_obj_id)<<endl;
//cout<<"id for bob: "<<kvstore->getIDByLiteral("\"Bob\"")<<endl;
//#endif
}
}
//NOTICE: we assume that there is no duplicates in the dataset
//if not, this->triple_num will be not right, and _p_id_tuples will save useless triples
//However, we can not use exist_triple to detect duplicates here, because it is too time-costly
2016-09-18 20:01:57 +08:00
// For id_tuples
//_p_id_tuples[_id_tuples_size] = new TYPE_ENTITY_LITERAL_ID[3];
//_p_id_tuples[_id_tuples_size][0] = _sub_id;
//_p_id_tuples[_id_tuples_size][1] = _pre_id;
//_p_id_tuples[_id_tuples_size][2] = _obj_id;
//_id_tuples_size++;
tmp_id_tuple.subid = _sub_id;
tmp_id_tuple.preid = _pre_id;
tmp_id_tuple.objid = _obj_id;
fwrite(&tmp_id_tuple, sizeof(ID_TUPLE), 1, fp);
//fwrite(&_sub_id, sizeof(TYPE_ENTITY_LITERAL_ID), 1, fp);
//fwrite(&_pre_id, sizeof(TYPE_ENTITY_LITERAL_ID), 1, fp);
//fwrite(&_obj_id, sizeof(TYPE_ENTITY_LITERAL_ID), 1, fp);
2016-09-18 20:01:57 +08:00
#ifdef DEBUG_PRECISE
2017-03-24 20:10:43 +08:00
//// save six tuples
//_six_tuples_fout << _sub_id << '\t'
//<< _pre_id << '\t'
//<< _obj_id << '\t'
//<< _sub << '\t'
//<< _pre << '\t'
//<< _obj << endl;
2016-09-18 20:01:57 +08:00
#endif
2017-03-24 20:10:43 +08:00
//NOTICE: the memory cost maybe too larger if combine teh below process here
//we can do below after this function or after all B+trees are built and closed
//and we can decide the length of signature according to entity num then
//1. after all b+trees: empty id_tuples and only open id2string, reload rdf file and encode(using string for entity/literal)
//
//2. after this function or after all B+trees: close others and only use id_tuples to encode(no need to read file again, which is too costly)
//not encoded with string but all IDs(not using encode for string regex matching, then this is ok!)
//Because we encode with ID, then Signature has to be changed(and dynamic sig length)
//use same encode strategy for entity/literal/predicate, and adjust the rate of the 3 parts according to real case
//What is more, if the system memory is enough(precisely, the memory you want to assign to gstore - to vstree/entity_sig_array),
//we can also set the sig length larger(which should be included in config file)
2016-09-18 20:01:57 +08:00
//_entity_bitset is used up, double the space
//if (this->entity_num >= entitybitset_max)
//{
////cout<<"to double entity bitset num"<<endl;
//EntityBitSet** _new_entity_bitset = new EntityBitSet*[entitybitset_max * 2];
2017-03-24 20:10:43 +08:00
////BETTER?:if use pointer for array, avoid the copy cost of entitybitset, but consumes more mmeory
////if the triple size is 1-2 billion, then the memory cost will be very large!!!
//memcpy(_new_entity_bitset, _entity_bitset, sizeof(EntityBitSet*) * entitybitset_max);
//delete[] _entity_bitset;
//_entity_bitset = _new_entity_bitset;
//int tmp = entitybitset_max * 2;
//for (int i = entitybitset_max; i < tmp; i++)
//{
//_entity_bitset[i] = new EntityBitSet();
//_entity_bitset[i]->reset();
//}
//entitybitset_max = tmp;
//}
//{
//_tmp_bitset.reset();
//Signature::encodePredicate2Entity(_pre_id, _tmp_bitset, Util::EDGE_OUT);
//Signature::encodeStr2Entity(_obj.c_str(), _tmp_bitset);
//*_entity_bitset[_sub_id] |= _tmp_bitset;
//}
//if (triple_array[i].isObjEntity())
//{
//_tmp_bitset.reset();
//Signature::encodePredicate2Entity(_pre_id, _tmp_bitset, Util::EDGE_IN);
//Signature::encodeStr2Entity(_sub.c_str(), _tmp_bitset);
////cout<<"objid: "<<_obj_id <<endl;
////when 15999 error
////WARN:id allocated can be very large while the num is not so much
////This means that maybe the space for the _obj_id is not allocated now
////NOTICE:we prepare the free id list in uporder and contiguous, so in build process
////this can work well
//*_entity_bitset[_obj_id] |= _tmp_bitset;
//}
2016-09-18 20:01:57 +08:00
}
}
2017-06-13 15:24:00 +08:00
//cout<<"==> end while(true)"<<endl;
2016-09-18 20:01:57 +08:00
delete[] triple_array;
_fin.close();
_six_tuples_fout.close();
fclose(fp);
2016-09-18 20:01:57 +08:00
//for (int i = 0; i < entitybitset_max; i++)
//{
//delete _entity_bitset[i];
//}
//delete[] _entity_bitset;
cout << "finish sub2id pre2id obj2id" << endl;
cout << "tripleNum is " << this->triples_num << endl;
cout << "entityNum is " << this->entity_num << endl;
cout << "preNum is " << this->pre_num << endl;
cout << "literalNum is " << this->literal_num << endl;
//{
//stringstream _ss;
//_ss << "finish sub2id pre2id obj2id" << endl;
//_ss << "tripleNum is " << this->triples_num << endl;
//_ss << "entityNum is " << this->entity_num << endl;
//_ss << "preNum is " << this->pre_num << endl;
//_ss << "literalNum is " << this->literal_num << endl;
//Util::logging(_ss.str());
//cout << _ss.str() << endl;
//}
2016-09-18 20:01:57 +08:00
return true;
}
bool
2017-03-24 20:10:43 +08:00
Database::insertTriple(const TripleWithObjType& _triple, vector<unsigned>* _vertices, vector<unsigned>* _predicates)
2016-09-18 20:01:57 +08:00
{
//cout<<endl<<"the new triple is:"<<endl;
//cout<<_triple.subject<<endl;
//cout<<_triple.predicate<<endl;
//cout<<_triple.object<<endl;
2016-09-18 20:01:57 +08:00
//int sid1 = this->kvstore->getIDByEntity("<http://www.Department7.University0.edu/UndergraduateStudent394>");
//int sid2 = this->kvstore->getIDByEntity("<http://www.Department7.University0.edu/UndergraduateStudent395>");
//int oid1 = this->kvstore->getIDByEntity("<ub:UndergraduateStudent>");
//int oid2 = this->kvstore->getIDByEntity("<UndergraduateStudent394@Department7.University0.edu>");
//cout<<sid1<<" "<<sid2<<" "<<oid1<<" "<<oid2<<endl;
2016-09-18 20:01:57 +08:00
long tv_kv_store_begin = Util::get_cur_time();
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID _sub_id = (this->kvstore)->getIDByEntity(_triple.subject);
2016-09-18 20:01:57 +08:00
bool _is_new_sub = false;
//if sub does not exist
2017-03-24 20:10:43 +08:00
if (_sub_id == INVALID_ENTITY_LITERAL_ID)
//if (_sub_id == -1)
2016-09-18 20:01:57 +08:00
{
_is_new_sub = true;
//_sub_id = this->entity_num++;
_sub_id = this->allocEntityID();
//cout<<"this is a new sub id"<<endl;
//if(_sub_id == 14912)
//{
2017-01-16 14:12:57 +08:00
//cout<<"get the error one"<<endl;
//cout<<_sub_id<<endl<<_triple.subject<<endl;
//cout<<_triple.predicate<<endl<<_triple.object<<endl;
//}
2016-09-18 20:01:57 +08:00
this->sub_num++;
(this->kvstore)->setIDByEntity(_triple.subject, _sub_id);
(this->kvstore)->setEntityByID(_sub_id, _triple.subject);
2017-01-16 14:12:57 +08:00
//update the string buffer
if (_sub_id < this->entity_buffer_size)
{
this->entity_buffer->set(_sub_id, _triple.subject);
}
if (_vertices != NULL)
_vertices->push_back(_sub_id);
2016-09-18 20:01:57 +08:00
}
2017-03-24 20:10:43 +08:00
TYPE_PREDICATE_ID _pre_id = (this->kvstore)->getIDByPredicate(_triple.predicate);
2016-09-18 20:01:57 +08:00
bool _is_new_pre = false;
//if pre does not exist
2017-03-24 20:10:43 +08:00
if (_pre_id == INVALID_PREDICATE_ID)
//if (_pre_id == -1)
2016-09-18 20:01:57 +08:00
{
_is_new_pre = true;
//_pre_id = this->pre_num++;
_pre_id = this->allocPredicateID();
(this->kvstore)->setIDByPredicate(_triple.predicate, _pre_id);
(this->kvstore)->setPredicateByID(_pre_id, _triple.predicate);
2017-01-16 14:12:57 +08:00
if (_predicates != NULL)
_predicates->push_back(_pre_id);
2016-09-18 20:01:57 +08:00
}
//object is either entity or literal
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID _obj_id = INVALID_ENTITY_LITERAL_ID;
//int _obj_id = -1;
2016-09-18 20:01:57 +08:00
bool _is_new_obj = false;
bool is_obj_entity = _triple.isObjEntity();
if (is_obj_entity)
{
_obj_id = (this->kvstore)->getIDByEntity(_triple.object);
2017-03-24 20:10:43 +08:00
//if (_obj_id == -1)
if (_obj_id == INVALID_ENTITY_LITERAL_ID)
2016-09-18 20:01:57 +08:00
{
_is_new_obj = true;
//_obj_id = this->entity_num++;
_obj_id = this->allocEntityID();
(this->kvstore)->setIDByEntity(_triple.object, _obj_id);
(this->kvstore)->setEntityByID(_obj_id, _triple.object);
2017-01-16 14:12:57 +08:00
//update the string buffer
if (_obj_id < this->entity_buffer_size)
{
this->entity_buffer->set(_obj_id, _triple.object);
}
if (_vertices != NULL)
_vertices->push_back(_obj_id);
2016-09-18 20:01:57 +08:00
}
}
else
{
_obj_id = (this->kvstore)->getIDByLiteral(_triple.object);
2017-03-24 20:10:43 +08:00
//if (_obj_id == -1)
if (_obj_id == INVALID_ENTITY_LITERAL_ID)
2016-09-18 20:01:57 +08:00
{
_is_new_obj = true;
//_obj_id = Util::LITERAL_FIRST_ID + this->literal_num;
_obj_id = this->allocLiteralID();
(this->kvstore)->setIDByLiteral(_triple.object, _obj_id);
(this->kvstore)->setLiteralByID(_obj_id, _triple.object);
2017-01-16 14:12:57 +08:00
//update the string buffer
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID tid = _obj_id - Util::LITERAL_FIRST_ID;
2017-01-16 14:12:57 +08:00
if (tid < this->literal_buffer_size)
{
this->literal_buffer->set(tid, _triple.object);
}
if (_vertices != NULL)
_vertices->push_back(_obj_id);
2016-09-18 20:01:57 +08:00
}
}
//if this is not a new triple, return directly
bool _triple_exist = false;
if (!_is_new_sub && !_is_new_pre && !_is_new_obj)
{
_triple_exist = this->exist_triple(_sub_id, _pre_id, _obj_id);
}
//debug
// {
// stringstream _ss;
// _ss << this->literal_num << endl;
// _ss <<"ids: " << _sub_id << " " << _pre_id << " " << _obj_id << " " << _triple_exist << endl;
// Util::logging(_ss.str());
// }
if (_triple_exist)
{
2017-01-16 14:12:57 +08:00
cout << "this triple already exist" << endl;
return false;
2016-09-18 20:01:57 +08:00
}
else
{
this->triples_num++;
}
//cout<<"the triple spo ids: "<<_sub_id<<" "<<_pre_id<<" "<<_obj_id<<endl;
//update sp2o op2s s2po o2ps s2o o2s etc.
2017-03-24 20:10:43 +08:00
unsigned updateLen = (this->kvstore)->updateTupleslist_insert(_sub_id, _pre_id, _obj_id);
2016-09-18 20:01:57 +08:00
//int* list = NULL;
//int len = 0;
//int root = this->kvstore->getIDByEntity("<root>");
//int contain = this->kvstore->getIDByPredicate("<contain>");
//this->kvstore->getobjIDlistBysubIDpreID(root, contain, list, len);
//cout<<root<<" "<<contain<<endl;
//if(len == 0)
//{
//cout<<"no result"<<endl;
//}
//for(int i = 0; i < len; ++i)
//{
//cout << this->kvstore->getEntityByID(list[i])<<" "<<list[i]<<endl;
//}
long tv_kv_store_end = Util::get_cur_time();
EntityBitSet _sub_entity_bitset;
_sub_entity_bitset.reset();
//this->encodeTriple2SubEntityBitSet(_sub_entity_bitset, &_triple);
this->encodeTriple2SubEntityBitSet(_sub_entity_bitset, _pre_id, _obj_id);
2016-09-18 20:01:57 +08:00
//if new entity then insert it, else update it.
if (_is_new_sub)
{
//cout<<"to insert: "<<_sub_id<<" "<<this->kvstore->getEntityByID(_sub_id)<<endl;
2016-09-18 20:01:57 +08:00
SigEntry _sig(_sub_id, _sub_entity_bitset);
(this->vstree)->insertEntry(_sig);
}
else
{
//cout<<"to update: "<<_sub_id<<" "<<this->kvstore->getEntityByID(_sub_id)<<endl;
2016-09-18 20:01:57 +08:00
(this->vstree)->updateEntry(_sub_id, _sub_entity_bitset);
}
//if the object is an entity, then update or insert this entity's entry.
if (is_obj_entity)
{
EntityBitSet _obj_entity_bitset;
_obj_entity_bitset.reset();
//this->encodeTriple2ObjEntityBitSet(_obj_entity_bitset, &_triple);
this->encodeTriple2ObjEntityBitSet(_obj_entity_bitset, _pre_id, _sub_id);
2016-09-18 20:01:57 +08:00
if (_is_new_obj)
{
//cout<<"to insert: "<<_obj_id<<" "<<this->kvstore->getEntityByID(_obj_id)<<endl;
2016-09-18 20:01:57 +08:00
SigEntry _sig(_obj_id, _obj_entity_bitset);
(this->vstree)->insertEntry(_sig);
}
else
{
//cout<<"to update: "<<_obj_id<<" "<<this->kvstore->getEntityByID(_obj_id)<<endl;
2016-09-18 20:01:57 +08:00
(this->vstree)->updateEntry(_obj_id, _obj_entity_bitset);
}
}
long tv_vs_store_end = Util::get_cur_time();
//debug
{
cout << "update kv_store, used " << (tv_kv_store_end - tv_kv_store_begin) << "ms." << endl;
cout << "update vs_store, used " << (tv_vs_store_end - tv_kv_store_end) << "ms." << endl;
}
return true;
//return updateLen;
2016-09-18 20:01:57 +08:00
}
bool
2017-03-24 20:10:43 +08:00
Database::removeTriple(const TripleWithObjType& _triple, vector<unsigned>* _vertices, vector<unsigned>* _predicates)
2016-09-18 20:01:57 +08:00
{
long tv_kv_store_begin = Util::get_cur_time();
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID _sub_id = (this->kvstore)->getIDByEntity(_triple.subject);
TYPE_PREDICATE_ID _pre_id = (this->kvstore)->getIDByPredicate(_triple.predicate);
TYPE_ENTITY_LITERAL_ID _obj_id = INVALID_ENTITY_LITERAL_ID;
if(_triple.isObjEntity())
{
_obj_id = (this->kvstore)->getIDByEntity(_triple.object);
}
else
2016-09-18 20:01:57 +08:00
{
_obj_id = (this->kvstore)->getIDByLiteral(_triple.object);
}
//if (_obj_id == -1)
//if (_obj_id == INVALID_ENTITY_LITERAL_ID)
//{
//_obj_id = (this->kvstore)->getIDByLiteral(_triple.object);
//}
2017-03-24 20:10:43 +08:00
//if (_sub_id == -1 || _pre_id == -1 || _obj_id == -1)
if (_sub_id == INVALID_ENTITY_LITERAL_ID || _pre_id == INVALID_PREDICATE_ID || _obj_id == INVALID_ENTITY_LITERAL_ID)
2016-09-18 20:01:57 +08:00
{
return false;
}
bool _exist_triple = this->exist_triple(_sub_id, _pre_id, _obj_id);
if (!_exist_triple)
{
return false;
}
else
{
this->triples_num--;
}
2017-01-16 14:12:57 +08:00
cout << "triple existence checked" << endl;
2016-09-18 20:01:57 +08:00
//remove from sp2o op2s s2po o2ps s2o o2s
//sub2id, pre2id and obj2id will not be updated
(this->kvstore)->updateTupleslist_remove(_sub_id, _pre_id, _obj_id);
2017-01-16 14:12:57 +08:00
cout << "11 trees updated" << endl;
2016-09-18 20:01:57 +08:00
long tv_kv_store_end = Util::get_cur_time();
int sub_degree = (this->kvstore)->getEntityDegree(_sub_id);
//if subject become an isolated point, remove its corresponding entry
if (sub_degree == 0)
{
cout<<"to remove entry for sub"<<endl;
cout<<_sub_id << " "<<this->kvstore->getEntityByID(_sub_id)<<endl;
this->kvstore->subEntityByID(_sub_id);
this->kvstore->subIDByEntity(_triple.subject);
2016-09-18 20:01:57 +08:00
(this->vstree)->removeEntry(_sub_id);
this->freeEntityID(_sub_id);
this->sub_num--;
2017-01-16 14:12:57 +08:00
//update the string buffer
if (_sub_id < this->entity_buffer_size)
{
this->entity_buffer->del(_sub_id);
}
if (_vertices != NULL)
_vertices->push_back(_sub_id);
2016-09-18 20:01:57 +08:00
}
//else re-calculate the signature of subject & replace that in vstree
else
{
//cout<<"to replace entry for sub"<<endl;
//cout<<_sub_id << " "<<this->kvstore->getEntityByID(_sub_id)<<endl;
EntityBitSet _entity_bitset;
_entity_bitset.reset();
this->calculateEntityBitSet(_sub_id, _entity_bitset);
//NOTICE:can not use updateEntry as insert because this is in remove
//In insert we can add a OR operation and all is ok
(this->vstree)->replaceEntry(_sub_id, _entity_bitset);
}
//cout<<"subject dealed"<<endl;
bool is_obj_entity = _triple.isObjEntity();
int obj_degree;
if (is_obj_entity)
{
obj_degree = this->kvstore->getEntityDegree(_obj_id);
if (obj_degree == 0)
{
//cout<<"to remove entry for obj"<<endl;
//cout<<_obj_id << " "<<this->kvstore->getEntityByID(_obj_id)<<endl;
this->kvstore->subEntityByID(_obj_id);
this->kvstore->subIDByEntity(_triple.object);
2016-09-18 20:01:57 +08:00
this->vstree->removeEntry(_obj_id);
this->freeEntityID(_obj_id);
2017-01-16 14:12:57 +08:00
//update the string buffer
if (_obj_id < this->entity_buffer_size)
{
this->entity_buffer->del(_obj_id);
}
if (_vertices != NULL)
_vertices->push_back(_obj_id);
2016-09-18 20:01:57 +08:00
}
else
{
//cout<<"to replace entry for obj"<<endl;
//cout<<_obj_id << " "<<this->kvstore->getEntityByID(_obj_id)<<endl;
2016-09-18 20:01:57 +08:00
EntityBitSet _entity_bitset;
_entity_bitset.reset();
this->calculateEntityBitSet(_obj_id, _entity_bitset);
this->vstree->replaceEntry(_obj_id, _entity_bitset);
}
}
else
{
obj_degree = this->kvstore->getLiteralDegree(_obj_id);
if (obj_degree == 0)
{
this->kvstore->subLiteralByID(_obj_id);
this->kvstore->subIDByLiteral(_triple.object);
this->freeLiteralID(_obj_id);
2017-01-16 14:12:57 +08:00
//update the string buffer
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID tid = _obj_id - Util::LITERAL_FIRST_ID;
2017-01-16 14:12:57 +08:00
if (tid < this->literal_buffer_size)
{
this->literal_buffer->del(tid);
}
if (_vertices != NULL)
_vertices->push_back(_obj_id);
2016-09-18 20:01:57 +08:00
}
}
//cout<<"object dealed"<<endl;
int pre_degree = this->kvstore->getPredicateDegree(_pre_id);
if (pre_degree == 0)
{
this->kvstore->subPredicateByID(_pre_id);
this->kvstore->subIDByPredicate(_triple.predicate);
this->freePredicateID(_pre_id);
2017-01-16 14:12:57 +08:00
if (_predicates != NULL)
_predicates->push_back(_pre_id);
2016-09-18 20:01:57 +08:00
}
//cout<<"predicate dealed"<<endl;
long tv_vs_store_end = Util::get_cur_time();
//debug
{
cout << "update kv_store, used " << (tv_kv_store_end - tv_kv_store_begin) << "ms." << endl;
cout << "update vs_store, used " << (tv_vs_store_end - tv_kv_store_end) << "ms." << endl;
}
return true;
}
bool
Database::insert(std::string _rdf_file, bool _is_restore)
2016-09-18 20:01:57 +08:00
{
bool flag = _is_restore || this->load();
//bool flag = this->load();
2016-09-18 20:01:57 +08:00
if (!flag)
{
return false;
}
cout << "finish loading" << endl;
long tv_load = Util::get_cur_time();
2017-03-24 20:10:43 +08:00
TYPE_TRIPLE_NUM success_num = 0;
2016-09-18 20:01:57 +08:00
ifstream _fin(_rdf_file.c_str());
if (!_fin)
{
cout << "fail to open : " << _rdf_file << ".@insert_test" << endl;
2016-09-18 20:01:57 +08:00
//exit(0);
return false;
}
//NOTICE+WARN:we can not load all triples into memory all at once!!!
//the parameter in build and insert must be the same, because RDF parser also use this
//for build process, this one can be big enough if memory permits
//for insert/delete process, this can not be too large, otherwise too costly
2016-09-18 20:01:57 +08:00
TripleWithObjType* triple_array = new TripleWithObjType[RDFParser::TRIPLE_NUM_PER_GROUP];
//parse a file
RDFParser _parser(_fin);
2017-03-24 20:10:43 +08:00
TYPE_TRIPLE_NUM triple_num = 0;
2016-09-18 20:01:57 +08:00
#ifdef DEBUG
Util::logging("==> while(true)");
#endif
while (true)
{
int parse_triple_num = 0;
_parser.parseFile(triple_array, parse_triple_num);
#ifdef DEBUG
stringstream _ss;
//NOTICE:this is not same as others, use parse_triple_num directly
_ss << "finish rdfparser" << parse_triple_num << endl;
Util::logging(_ss.str());
cout << _ss.str() << endl;
#endif
if (parse_triple_num == 0)
{
break;
}
//Process the Triple one by one
success_num += this->insert(triple_array, parse_triple_num, _is_restore);
2016-09-18 20:01:57 +08:00
//some maybe invalid or duplicate
//triple_num += parse_triple_num;
}
delete[] triple_array;
long tv_insert = Util::get_cur_time();
cout << "after insert, used " << (tv_insert - tv_load) << "ms." << endl;
//BETTER:update kvstore and vstree separately, to lower the memory cost
//flag = this->vstree->saveTree();
//if (!flag)
//{
//return false;
//}
//flag = this->saveDBInfoFile();
//if (!flag)
//{
//return false;
//}
2016-09-18 20:01:57 +08:00
cout << "insert rdf triples done." << endl;
cout<<"inserted triples num: "<<success_num<<endl;
2016-09-18 20:01:57 +08:00
//int* list = NULL;
//int len = 0;
//int root = this->kvstore->getIDByEntity("<root>");
//int contain = this->kvstore->getIDByPredicate("<contain>");
//this->kvstore->getobjIDlistBysubIDpreID(root, contain, list, len);
//cout<<root<<" "<<contain<<endl;
//if(len == 0)
//{
//cout<<"no result"<<endl;
//}
//for(int i = 0; i < len; ++i)
//{
//cout << this->kvstore->getEntityByID(list[i])<<" "<<list[i]<<endl;
//}
//cout<<endl;
//int t = this->kvstore->getIDByEntity("<node5>");
//cout<<t<<endl;
//cout<<this->kvstore->getEntityByID(0)<<endl;
return true;
}
bool
Database::remove(std::string _rdf_file, bool _is_restore)
2016-09-18 20:01:57 +08:00
{
bool flag = _is_restore || this->load();
//bool flag = this->load();
2016-09-18 20:01:57 +08:00
if (!flag)
{
return false;
}
cout << "finish loading" << endl;
long tv_load = Util::get_cur_time();
2017-03-24 20:10:43 +08:00
TYPE_TRIPLE_NUM success_num = 0;
2016-09-18 20:01:57 +08:00
ifstream _fin(_rdf_file.c_str());
if (!_fin)
{
cout << "fail to open : " << _rdf_file << ".@remove_test" << endl;
2016-09-18 20:01:57 +08:00
return false;
}
//NOTICE+WARN:we can not load all triples into memory all at once!!!
TripleWithObjType* triple_array = new TripleWithObjType[RDFParser::TRIPLE_NUM_PER_GROUP];
//parse a file
RDFParser _parser(_fin);
//int triple_num = 0;
#ifdef DEBUG
Util::logging("==> while(true)");
#endif
while (true)
{
int parse_triple_num = 0;
_parser.parseFile(triple_array, parse_triple_num);
#ifdef DEBUG
stringstream _ss;
//NOTICE:this is not same as others, use parse_triple_num directly
_ss << "finish rdfparser" << parse_triple_num << endl;
Util::logging(_ss.str());
cout << _ss.str() << endl;
#endif
if (parse_triple_num == 0)
{
break;
}
success_num += this->remove(triple_array, parse_triple_num, _is_restore);
2016-09-18 20:01:57 +08:00
//some maybe invalid or duplicate
//triple_num -= parse_triple_num;
}
//TODO:better to free this just after id_tuples are ok
//(only when using group insertion/deletion)
//or reduce the array size
2016-09-18 20:01:57 +08:00
delete[] triple_array;
long tv_remove = Util::get_cur_time();
cout << "after remove, used " << (tv_remove - tv_load) << "ms." << endl;
//flag = this->vstree->saveTree();
//if (!flag)
//{
//return false;
//}
//flag = this->saveDBInfoFile();
//if (!flag)
//{
//return false;
//}
2016-09-18 20:01:57 +08:00
cout << "remove rdf triples done." << endl;
cout<<"removed triples num: "<<success_num<<endl;
if(this->vstree->isEmpty())
{
this->resetIDinfo();
}
2016-09-18 20:01:57 +08:00
return true;
}
2017-03-24 20:10:43 +08:00
unsigned
Database::insert(const TripleWithObjType* _triples, TYPE_TRIPLE_NUM _triple_num, bool _is_restore)
2016-09-18 20:01:57 +08:00
{
2017-03-24 20:10:43 +08:00
vector<TYPE_ENTITY_LITERAL_ID> vertices, predicates;
TYPE_TRIPLE_NUM valid_num = 0;
if (!_is_restore) {
string path = this->getStorePath() + '/' + this->update_log;
string path_all = this->getStorePath() + '/' + this->update_log_since_backup;
ofstream out;
ofstream out_all;
out.open(path.c_str(), ios::out | ios::app);
out_all.open(path_all.c_str(), ios::out | ios::app);
if (!out || !out_all) {
cerr << "Failed to open update log. Insertion aborted." << endl;
return 0;
}
for (int i = 0; i < _triple_num; i++) {
if (exist_triple(_triples[i])) {
continue;
}
stringstream ss;
ss << "I\t" << Util::node2string(_triples[i].getSubject().c_str()) << '\t';
ss << Util::node2string(_triples[i].getPredicate().c_str()) << '\t';
ss << Util::node2string(_triples[i].getObject().c_str()) << '.' << endl;
out << ss.str();
out_all << ss.str();
}
out.close();
out_all.close();
}
#ifdef USE_GROUP_INSERT
2016-09-18 20:01:57 +08:00
//NOTICE:this is called by insert(file) or query()(but can not be too large),
//assume that db is loaded already
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID** id_tuples = new TYPE_ENTITY_LITERAL_ID*[_triple_num];
//TODO:change the type in this catagolory
2016-09-18 20:01:57 +08:00
int i = 0;
//for(i = 0; i < _triple_num; ++i)
//{
//id_tuples[i] = new int[3];
//}
map<int, EntityBitSet> old_sigmap;
map<int, EntityBitSet> new_sigmap;
set<int> new_entity;
map<int, EntityBitSet>::iterator it;
EntityBitSet tmpset;
tmpset.reset();
int subid, objid, preid;
bool is_obj_entity;
for (i = 0; i < _triple_num; ++i)
{
bool is_new_sub = false, is_new_pre = false, is_new_obj = false;
string sub = _triples[i].getSubject();
subid = this->kvstore->getIDByEntity(sub);
if (subid == -1)
{
is_new_sub = true;
subid = this->allocEntityID();
2017-01-16 14:12:57 +08:00
cout << "this is a new subject: " << sub << " " << subid << endl;
2016-09-18 20:01:57 +08:00
this->sub_num++;
this->kvstore->setIDByEntity(sub, subid);
this->kvstore->setEntityByID(subid, sub);
new_entity.insert(subid);
2017-01-16 14:12:57 +08:00
//add info and update buffer
vertices.push_back(subid);
if (subid < this->entity_buffer_size)
{
this->entity_buffer->set(subid, sub);
}
2016-09-18 20:01:57 +08:00
}
string pre = _triples[i].getPredicate();
preid = this->kvstore->getIDByPredicate(pre);
if (preid == -1)
{
is_new_pre = true;
preid = this->allocPredicateID();
this->kvstore->setIDByPredicate(pre, preid);
this->kvstore->setPredicateByID(preid, pre);
2017-01-16 14:12:57 +08:00
predicates.push_back(preid);
2016-09-18 20:01:57 +08:00
}
is_obj_entity = _triples[i].isObjEntity();
string obj = _triples[i].getObject();
if (is_obj_entity)
{
objid = this->kvstore->getIDByEntity(obj);
if (objid == -1)
{
is_new_obj = true;
objid = this->allocEntityID();
2017-01-16 14:12:57 +08:00
cout << "this is a new object: " << obj << " " << objid << endl;
2016-09-18 20:01:57 +08:00
//this->obj_num++;
this->kvstore->setIDByEntity(obj, objid);
this->kvstore->setEntityByID(objid, obj);
new_entity.insert(objid);
2017-01-16 14:12:57 +08:00
//add info and update
vertices.push_back(objid);
if (objid < this->entity_buffer_size)
{
this->entity_buffer->set(objid, obj);
}
2016-09-18 20:01:57 +08:00
}
}
else //isObjLiteral
{
objid = this->kvstore->getIDByLiteral(obj);
if (objid == -1)
{
is_new_obj = true;
objid = this->allocLiteralID();
//this->obj_num++;
this->kvstore->setIDByLiteral(obj, objid);
this->kvstore->setLiteralByID(objid, obj);
2017-01-16 14:12:57 +08:00
//add info and update
vertices.push_back(objid);
int tid = objid - Util::LITERAL_FIRST_ID;
if (tid < this->literal_buffer_size)
{
this->literal_buffer->set(tid, obj);
}
2016-09-18 20:01:57 +08:00
}
}
bool triple_exist = false;
if (!is_new_sub && !is_new_pre && !is_new_obj)
{
triple_exist = this->exist_triple(subid, preid, objid);
}
if (triple_exist)
{
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "this triple exist" << endl;
#endif
2016-09-18 20:01:57 +08:00
continue;
}
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "this triple not exist" << endl;
#endif
2016-09-18 20:01:57 +08:00
id_tuples[valid_num] = new int[3];
id_tuples[valid_num][0] = subid;
id_tuples[valid_num][1] = preid;
id_tuples[valid_num][2] = objid;
this->triples_num++;
valid_num++;
tmpset.reset();
Signature::encodePredicate2Entity(preid, tmpset, Util::EDGE_OUT);
Signature::encodeStr2Entity(obj.c_str(), tmpset);
2017-01-16 14:12:57 +08:00
if (new_entity.find(subid) != new_entity.end())
2016-09-18 20:01:57 +08:00
{
it = new_sigmap.find(subid);
if (it != new_sigmap.end())
{
it->second |= tmpset;
}
else
{
new_sigmap[subid] = tmpset;
}
}
else
{
it = old_sigmap.find(subid);
if (it != old_sigmap.end())
{
it->second |= tmpset;
}
else
{
old_sigmap[subid] = tmpset;
}
}
if (is_obj_entity)
{
tmpset.reset();
Signature::encodePredicate2Entity(preid, tmpset, Util::EDGE_IN);
Signature::encodeStr2Entity(sub.c_str(), tmpset);
2017-01-16 14:12:57 +08:00
if (new_entity.find(objid) != new_entity.end())
2016-09-18 20:01:57 +08:00
{
it = new_sigmap.find(objid);
if (it != new_sigmap.end())
{
it->second |= tmpset;
}
else
{
new_sigmap[objid] = tmpset;
}
}
else
{
it = old_sigmap.find(objid);
if (it != old_sigmap.end())
{
it->second |= tmpset;
}
else
{
old_sigmap[objid] = tmpset;
}
}
}
}
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "old sigmap size: " << old_sigmap.size() << endl;
cout << "new sigmap size: " << new_sigmap.size() << endl;
cout << "valid num: " << valid_num << endl;
#endif
2016-09-18 20:01:57 +08:00
//NOTICE:need to sort and remove duplicates, update the valid num
//Notice that duplicates in a group can csuse problem
//We finish this by spo cmp
//this->kvstore->updateTupleslist_insert(_sub_id, _pre_id, _obj_id);
//sort and update kvstore: 11 indexes
//
//BETTER:maybe also use int* here with a size to start
//NOTICE:all kvtrees are opened now, one by one if memory is bottleneck
//
//spo cmp: s2p s2o s2po sp2o
{
#ifdef DEBUG
2016-09-18 20:01:57 +08:00
cout << "INSRET PROCESS: to spo cmp and update" << endl;
#endif
2017-01-16 14:12:57 +08:00
qsort(id_tuples, valid_num, sizeof(int*), KVstore::_spo_cmp);
2016-09-18 20:01:57 +08:00
//To remove duplicates
//int ti = 1, tj = 1;
//while(tj < valid_num)
//{
2017-01-16 14:12:57 +08:00
//if(id_tuples[tj][0] != id_tuples[tj-1][0] || id_tuples[tj][1] != id_tuples[tj-1][1] || id_tuples[tj][2] != id_tuples[tj-1][2])
//{
//id_tuples[ti][0] = id_tuples[tj][0];
//id_tuples[ti][1] = id_tuples[tj][1];
//id_tuples[ti][2] = id_tuples[tj][2];
//ti++;
//}
//tj++;
2016-09-18 20:01:57 +08:00
//}
//for(tj = ti; tj < valid_num; ++tj)
//{
2017-01-16 14:12:57 +08:00
//delete[] id_tuples[tj];
//id_tuples[tj] = NULL;
2016-09-18 20:01:57 +08:00
//}
//valid_num = ti;
//
//Notice that below already consider duplicates in loop
vector<int> oidlist_s;
vector<int> pidlist_s;
vector<int> oidlist_sp;
vector<int> pidoidlist_s;
bool _sub_change = true;
bool _sub_pre_change = true;
bool _pre_change = true;
for (int i = 0; i < valid_num; ++i)
if (i + 1 == valid_num || (id_tuples[i][0] != id_tuples[i + 1][0] || id_tuples[i][1] != id_tuples[i + 1][1] || id_tuples[i][2] != id_tuples[i + 1][2]))
{
int _sub_id = id_tuples[i][0];
int _pre_id = id_tuples[i][1];
int _obj_id = id_tuples[i][2];
oidlist_s.push_back(_obj_id);
oidlist_sp.push_back(_obj_id);
pidoidlist_s.push_back(_pre_id);
pidoidlist_s.push_back(_obj_id);
pidlist_s.push_back(_pre_id);
_sub_change = (i + 1 == valid_num) || (id_tuples[i][0] != id_tuples[i + 1][0]);
_pre_change = (i + 1 == valid_num) || (id_tuples[i][1] != id_tuples[i + 1][1]);
_sub_pre_change = _sub_change || _pre_change;
if (_sub_pre_change)
{
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update sp2o: " << _sub_id << " " << _pre_id << " " << oidlist_sp.size() << endl;
#endif
2017-01-16 14:12:57 +08:00
cout << this->kvstore->getEntityByID(_sub_id) << endl;
cout << this->kvstore->getPredicateByID(_pre_id) << endl;
//this->kvstore->updateInsert_sp2o(_sub_id, _pre_id, oidlist_sp);
2016-09-18 20:01:57 +08:00
oidlist_sp.clear();
}
if (_sub_change)
{
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update s2p: " << _sub_id << " " << pidlist_s.size() << endl;
#endif
2017-01-16 14:12:57 +08:00
//this->kvstore->updateInsert_s2p(_sub_id, pidlist_s);
2016-09-18 20:01:57 +08:00
pidlist_s.clear();
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update s2po: " << _sub_id << " " << pidoidlist_s.size() << endl;
#endif
2017-01-16 14:12:57 +08:00
this->kvstore->updateInsert_s2values(_sub_id, pidoidlist_s);
2016-09-18 20:01:57 +08:00
pidoidlist_s.clear();
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update s2o: " << _sub_id << " " << oidlist_s.size() << endl;
#endif
2016-09-18 20:01:57 +08:00
sort(oidlist_s.begin(), oidlist_s.end());
2017-01-16 14:12:57 +08:00
//this->kvstore->updateInsert_s2o(_sub_id, oidlist_s);
2016-09-18 20:01:57 +08:00
oidlist_s.clear();
}
}
#ifdef DEBUG
cout << "INSERT PROCESS: OUT s2po..." << endl;
#endif
2016-09-18 20:01:57 +08:00
}
//ops cmp: o2p o2s o2ps op2s
{
#ifdef DEBUG
2016-09-18 20:01:57 +08:00
cout << "INSRET PROCESS: to ops cmp and update" << endl;
#endif
2017-01-16 14:12:57 +08:00
qsort(id_tuples, valid_num, sizeof(int**), KVstore::_ops_cmp);
2016-09-18 20:01:57 +08:00
vector<int> sidlist_o;
vector<int> sidlist_op;
vector<int> pidsidlist_o;
vector<int> pidlist_o;
bool _obj_change = true;
bool _pre_change = true;
bool _obj_pre_change = true;
for (int i = 0; i < valid_num; ++i)
if (i + 1 == valid_num || (id_tuples[i][0] != id_tuples[i + 1][0] || id_tuples[i][1] != id_tuples[i + 1][1] || id_tuples[i][2] != id_tuples[i + 1][2]))
{
int _sub_id = id_tuples[i][0];
int _pre_id = id_tuples[i][1];
int _obj_id = id_tuples[i][2];
sidlist_o.push_back(_sub_id);
sidlist_op.push_back(_sub_id);
pidsidlist_o.push_back(_pre_id);
pidsidlist_o.push_back(_sub_id);
pidlist_o.push_back(_pre_id);
_obj_change = (i + 1 == valid_num) || (id_tuples[i][2] != id_tuples[i + 1][2]);
_pre_change = (i + 1 == valid_num) || (id_tuples[i][1] != id_tuples[i + 1][1]);
_obj_pre_change = _obj_change || _pre_change;
if (_obj_pre_change)
{
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update op2s: " << _obj_id << " " << _pre_id << " " << sidlist_op.size() << endl;
#endif
2017-01-16 14:12:57 +08:00
//this->kvstore->updateInsert_op2s(_obj_id, _pre_id, sidlist_op);
2016-09-18 20:01:57 +08:00
sidlist_op.clear();
}
if (_obj_change)
{
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update o2s: " << _obj_id << " " << sidlist_o.size() << endl;
#endif
2016-09-18 20:01:57 +08:00
sort(sidlist_o.begin(), sidlist_o.end());
2017-01-16 14:12:57 +08:00
//this->kvstore->updateInsert_o2s(_obj_id, sidlist_o);
2016-09-18 20:01:57 +08:00
sidlist_o.clear();
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update o2ps: " << _obj_id << " " << pidsidlist_o.size() << endl;
#endif
2017-01-16 14:12:57 +08:00
this->kvstore->updateInsert_o2values(_obj_id, pidsidlist_o);
2016-09-18 20:01:57 +08:00
pidsidlist_o.clear();
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update o2p: " << _obj_id << " " << pidlist_o.size() << endl;
#endif
2017-01-16 14:12:57 +08:00
//this->kvstore->updateInsert_o2p(_obj_id, pidlist_o);
2016-09-18 20:01:57 +08:00
pidlist_o.clear();
}
}
#ifdef DEBUG
cout << "INSERT PROCESS: OUT o2ps..." << endl;
#endif
2016-09-18 20:01:57 +08:00
}
//pso cmp: p2s p2o p2so
{
#ifdef DEBUG
2016-09-18 20:01:57 +08:00
cout << "INSRET PROCESS: to pso cmp and update" << endl;
#endif
2017-01-16 14:12:57 +08:00
qsort(id_tuples, valid_num, sizeof(int*), KVstore::_pso_cmp);
2016-09-18 20:01:57 +08:00
vector<int> sidlist_p;
vector<int> oidlist_p;
vector<int> sidoidlist_p;
bool _pre_change = true;
bool _sub_change = true;
//bool _pre_sub_change = true;
for (int i = 0; i < valid_num; i++)
if (i + 1 == valid_num || (id_tuples[i][0] != id_tuples[i + 1][0] || id_tuples[i][1] != id_tuples[i + 1][1] || id_tuples[i][2] != id_tuples[i + 1][2]))
{
int _sub_id = id_tuples[i][0];
int _pre_id = id_tuples[i][1];
int _obj_id = id_tuples[i][2];
oidlist_p.push_back(_obj_id);
sidoidlist_p.push_back(_sub_id);
sidoidlist_p.push_back(_obj_id);
sidlist_p.push_back(_sub_id);
_pre_change = (i + 1 == valid_num) || (id_tuples[i][1] != id_tuples[i + 1][1]);
_sub_change = (i + 1 == valid_num) || (id_tuples[i][0] != id_tuples[i + 1][0]);
//_pre_sub_change = _pre_change || _sub_change;
if (_pre_change)
{
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update p2s: " << _pre_id << " " << sidlist_p.size() << endl;
#endif
2017-01-16 14:12:57 +08:00
//this->kvstore->updateInsert_p2s(_pre_id, sidlist_p);
2016-09-18 20:01:57 +08:00
sidlist_p.clear();
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update p2o: " << _pre_id << " " << oidlist_p.size() << endl;
#endif
2016-09-18 20:01:57 +08:00
sort(oidlist_p.begin(), oidlist_p.end());
2017-01-16 14:12:57 +08:00
//this->kvstore->updateInsert_p2o(_pre_id, oidlist_p);
2016-09-18 20:01:57 +08:00
oidlist_p.clear();
#ifdef DEBUG
2017-01-16 14:12:57 +08:00
cout << "update p2so: " << _pre_id << " " << sidoidlist_p.size() << endl;
#endif
2017-01-16 14:12:57 +08:00
this->kvstore->updateInsert_p2values(_pre_id, sidoidlist_p);
2016-09-18 20:01:57 +08:00
sidoidlist_p.clear();
}
}
#ifdef DEBUG
cout << "INSERT PROCESS: OUT p2so..." << endl;
#endif
2016-09-18 20:01:57 +08:00
}
for (int i = 0; i < valid_num; ++i)
{
delete[] id_tuples[i];
}
delete[] id_tuples;
for (it = old_sigmap.begin(); it != old_sigmap.end(); ++it)
{
this->vstree->updateEntry(it->first, it->second);
}
for (it = new_sigmap.begin(); it != new_sigmap.end(); ++it)
{
SigEntry _sig(it->first, it->second);
this->vstree->insertEntry(_sig);
}
#else
//NOTICE:we deal with insertions one by one here
//Callers should save the vstree(node and info) after calling this function
2017-03-24 20:10:43 +08:00
for (TYPE_TRIPLE_NUM i = 0; i < _triple_num; ++i)
{
bool ret = this->insertTriple(_triples[i], &vertices, &predicates);
if(ret)
{
valid_num++;
}
}
#endif
//update string index
2017-01-16 14:12:57 +08:00
this->stringindex->change(vertices, *this->kvstore, true);
this->stringindex->change(predicates, *this->kvstore, false);
2016-09-18 20:01:57 +08:00
return valid_num;
2016-09-18 20:01:57 +08:00
}
2017-03-24 20:10:43 +08:00
unsigned
Database::remove(const TripleWithObjType* _triples, TYPE_TRIPLE_NUM _triple_num, bool _is_restore)
2016-09-18 20:01:57 +08:00
{
2017-03-24 20:10:43 +08:00
vector<TYPE_ENTITY_LITERAL_ID> vertices, predicates;
TYPE_TRIPLE_NUM valid_num = 0;
if (!_is_restore) {
string path = this->getStorePath() + '/' + this->update_log;
string path_all = this->getStorePath() + '/' + this->update_log_since_backup;
ofstream out;
ofstream out_all;
out.open(path.c_str(), ios::out | ios::app);
out_all.open(path_all.c_str(), ios::out | ios::app);
if (!out || !out_all) {
cerr << "Failed to open update log. Removal aborted." << endl;
return 0;
}
for (int i = 0; i < _triple_num; i++) {
if (!exist_triple(_triples[i])) {
continue;
}
stringstream ss;
ss << "R\t" << Util::node2string(_triples[i].getSubject().c_str()) << '\t';
ss << Util::node2string(_triples[i].getPredicate().c_str()) << '\t';
ss << Util::node2string(_triples[i].getObject().c_str()) << '.' << endl;
out << ss.str();
out_all << ss.str();
}
out.close();
out_all.close();
}
#ifdef USE_GROUP_DELETE
2016-09-18 20:01:57 +08:00
//NOTICE:this is called by remove(file) or query()(but can not be too large),
//assume that db is loaded already
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID** id_tuples = new TYPE_ENTITY_LITERAL_ID*[_triple_num];
TYPE_TRIPLE_NUM i = 0;
//TODO: change type in this catagolory
2016-09-18 20:01:57 +08:00
//for(i = 0; i < _triple_num; ++i)
//{
//id_tuples[i] = new int[3];
//}
//map<int, EntityBitSet> sigmap;
//map<int, EntityBitSet>::iterator it;
EntityBitSet tmpset;
tmpset.reset();
2017-03-24 20:10:43 +08:00
TYPE_ENTITY_LITERAL_ID subid, objid;
TYPE_PREDICATE_ID preid;
2016-09-18 20:01:57 +08:00
bool is_obj_entity;
for (i = 0; i < _triple_num; ++i)
{
string sub = _triples[i].getSubject();
subid = this->kvstore->getIDByEntity(sub);
2017-03-24 20:10:43 +08:00
//if(subid == -1)
if(subid == INVALID_ENTITY_LITERAL_ID)
{
continue;
}
2016-09-18 20:01:57 +08:00
string pre = _triples[i].getPredicate();
preid = this->kvstore->getIDByPredicate(pre);
2017-03-24 20:10:43 +08:00
//if(preid == -1)
if(preid == INVALID_PREDICATE_ID)
{
continue;
}
2016-09-18 20:01:57 +08:00
is_obj_entity = _triples[i].isObjEntity();
string obj = _triples[i].getObject();
if (is_obj_entity)
{
objid = this->kvstore->getIDByEntity(obj);
}
else //isObjLiteral
{
objid = this->kvstore->getIDByLiteral(obj);
}
2017-03-24 20:10:43 +08:00
//if(objid == -1)
if(objid == INVALID_ENTITY_LITERAL_ID)
2016-09-18 20:01:57 +08:00
{
continue;
}
//if (subid == -1 || preid == -1 || objid == -1)
//{
//continue;
//}
2016-09-18 20:01:57 +08:00
bool _exist_triple = this->exist_triple(subid, preid, objid);
if (!_exist_triple)
{
continue;
}
2017-03-24 20:10:43 +08:00
id_tuples[valid_num] = new TYPE_ENTITY_LITERAL_ID[3];
2016-09-18 20:01:57 +08:00
id_tuples[valid_num][0] = subid;
id_tuples[valid_num][1] = preid;
id_tuples[valid_num][2] = objid;
this->triples_num--;
valid_num++;
}
//NOTICE:sort and remove duplicates, update the valid num
//Notice that duplicates in a group can cause problem
int sub_degree, obj_degree, pre_degree;
string tmpstr;
//sort and update kvstore: 11 indexes
//
//BETTER:maybe also use int* here with a size to start
//NOTICE:all kvtrees are opened now, one by one if memory is bottleneck
//
//spo cmp: s2p s2o s2po sp2o
{
#ifdef DEBUG
2016-09-18 20:01:57 +08:00
cout << "INSRET PROCESS: to spo cmp and update" << endl;
#endif
2017-01-16 14:12:57 +08:00
qsort(id_tuples, valid_num, sizeof(int*), KVstore::_spo_cmp);
2016-09-18 20:01:57 +08:00
vector<int> oidlist_s;
vector<int> pidlist_s;
vector<int> oidlist_sp;
vector<int> pidoidlist_s;
bool _sub_change = true;
bool _sub_pre_change = true;
bool _pre_change = true;
for (int i = 0; i < valid_num; ++i)
if (i + 1 == valid_num || (id_tuples[i][0] != id_tuples[i + 1][0] || id_tuples[i][1] != id_tuples[i + 1][1] || id_tuples[i][2] != id_tuples[i + 1][2]))
{
int _sub_id = id_tuples[i][0];
int _pre_id = id_tuples[i][1];
int _obj_id = id_tuples[i][2];
oidlist_s.push_back(_obj_id);
oidlist_sp.push_back(_obj_id);
pidoidlist_s.push_back(_pre_id);
pidoidlist_s.push_back(_obj_id);
pidlist_s.push_back(_pre_id);
_sub_change = (i + 1 == valid_num) || (id_tuples[i][0] != id_tuples[i + 1][0]);
_pre_change = (i + 1 == valid_num) || (id_tuples[i][1] != id_tuples[i + 1][1]);
_sub_pre_change = _sub_change || _pre_change;
if (_sub_pre_change)
{
this->kvstore->updateRemove_sp2o(_sub_id, _pre_id, oidlist_sp);
oidlist_sp.clear();
}
if (_sub_change)
{
this->kvstore->updateRemove_s2p(_sub_id, pidlist_s);
pidlist_s.clear();
this->kvstore->updateRemove_s2po(_sub_id, pidoidlist_s);
pidoidlist_s.clear();
sort(oidlist_s.begin(), oidlist_s.end());
this->kvstore->updateRemove_s2o(_sub_id, oidlist_s);
oidlist_s.clear();
sub_degree = (this->kvstore)->getEntityDegree(_sub_id);
if (sub_degree == 0)
{
tmpstr = this->kvstore->getEntityByID(_sub_id);
this->kvstore->subEntityByID(_sub_id);
this->kvstore->subIDByEntity(tmpstr);
(this->vstree)->removeEntry(_sub_id);
this->freeEntityID(_sub_id);
this->sub_num--;
2017-01-16 14:12:57 +08:00
//add info and update buffer
vertices.push_back(_sub_id);
if (_sub_id < this->entity_buffer_size)
{
this->entity_buffer->del(_sub_id);
}
2016-09-18 20:01:57 +08:00
}
else
{
tmpset.reset();
this->calculateEntityBitSet(_sub_id, tmpset);
this->vstree->replaceEntry(_sub_id, tmpset);
}
}
}
#ifdef DEBUG
cout << "INSERT PROCESS: OUT s2po..." << endl;
#endif
2016-09-18 20:01:57 +08:00
}
//ops cmp: o2p o2s o2ps op2s
{
#ifdef DEBUG
2016-09-18 20:01:57 +08:00
cout << "INSRET PROCESS: to ops cmp and update" << endl;
#endif
2017-01-16 14:12:57 +08:00
qsort(id_tuples, valid_num, sizeof(int**), KVstore::_ops_cmp);
2016-09-18 20:01:57 +08:00
vector<int> sidlist_o;
vector<int> sidlist_op;
vector<int> pidsidlist_o;
vector<int> pidlist_o;
bool _obj_change = true;
bool _pre_change = true;
bool _obj_pre_change = true;
for (int i = 0; i < valid_num; ++i)
if (i + 1 == valid_num || (id_tuples[i][0] != id_tuples[i + 1][0] || id_tuples[i][1] != id_tuples[i + 1][1] || id_tuples[i][2] != id_tuples[i + 1][2]))
{
int _sub_id = id_tuples[i][0];
int _pre_id = id_tuples[i][1];
int _obj_id = id_tuples[i][2];
sidlist_o.push_back(_sub_id);
sidlist_op.push_back(_sub_id);
pidsidlist_o.push_back(_pre_id);
pidsidlist_o.push_back(_sub_id);
pidlist_o.push_back(_pre_id);
_obj_change = (i + 1 == valid_num) || (id_tuples[i][2] != id_tuples[i + 1][2]);
_pre_change = (i + 1 == valid_num) || (id_tuples[i][1] != id_tuples[i + 1][1]);
_obj_pre_change = _obj_change || _pre_change;
if (_obj_pre_change)
{
this->kvstore->updateRemove_op2s(_obj_id, _pre_id, sidlist_op);
sidlist_op.clear();
}
if (_obj_change)
{
sort(sidlist_o.begin(), sidlist_o.end());
this->kvstore->updateRemove_o2s(_obj_id, sidlist_o);
sidlist_o.clear();
this->kvstore->updateRemove_o2ps(_obj_id, pidsidlist_o);
pidsidlist_o.clear();
this->kvstore->updateRemove_o2p(_obj_id, pidlist_o);
pidlist_o.clear();
is_obj_entity = this->objIDIsEntityID(_obj_id);
2017-01-16 14:12:57 +08:00
if (is_obj_entity)
2016-09-18 20:01:57 +08:00
{
obj_degree = this->kvstore->getEntityDegree(_obj_id);
if (obj_degree == 0)
{
tmpstr = this->kvstore->getEntityByID(_obj_id);
this->kvstore->subEntityByID(_obj_id);
this->kvstore->subIDByEntity(tmpstr);
(this->vstree)->removeEntry(_obj_id);
this->freeEntityID(_obj_id);
2017-01-16 14:12:57 +08:00
//add info and update buffer
vertices.push_back(_obj_id);
if (_obj_id < this->entity_buffer_size)
{
this->entity_buffer->del(_obj_id);
}
2016-09-18 20:01:57 +08:00
}
else
{
tmpset.reset();
this->calculateEntityBitSet(_obj_id, tmpset);
this->vstree->replaceEntry(_obj_id, tmpset);
}
}
else
{
obj_degree = this->kvstore->getLiteralDegree(_obj_id);
if (obj_degree == 0)
{
tmpstr = this->kvstore->getLiteralByID(_obj_id);
this->kvstore->subLiteralByID(_obj_id);
this->kvstore->subIDByLiteral(tmpstr);
this->freeLiteralID(_obj_id);
2017-01-16 14:12:57 +08:00
//add info and update buffer
vertices.push_back(_obj_id);
int tid = _obj_id - Util::LITERAL_FIRST_ID;
if (tid < this->literal_buffer_size)
{
this->literal_buffer->del(tid);
}
2016-09-18 20:01:57 +08:00
}
}
}
}
#ifdef DEBUG
cout << "INSERT PROCESS: OUT o2ps..." << endl;
#endif
2016-09-18 20:01:57 +08:00
}
//pso cmp: p2s p2o p2so
{
#ifdef DEBUG
2016-09-18 20:01:57 +08:00
cout << "INSRET PROCESS: to pso cmp and update" << endl;
#endif
2017-01-16 14:12:57 +08:00
qsort(id_tuples, valid_num, sizeof(int*), KVstore::_pso_cmp);
2016-09-18 20:01:57 +08:00
vector<int> sidlist_p;
vector<int> oidlist_p;
vector<int> sidoidlist_p;
bool _pre_change = true;
bool _sub_change = true;
//bool _pre_sub_change = true;
for (int i = 0; i < valid_num; i++)
if (i + 1 == valid_num || (id_tuples[i][0] != id_tuples[i + 1][0] || id_tuples[i][1] != id_tuples[i + 1][1] || id_tuples[i][2] != id_tuples[i + 1][2]))
{
int _sub_id = id_tuples[i][0];
int _pre_id = id_tuples[i][1];
int _obj_id = id_tuples[i][2];
oidlist_p.push_back(_obj_id);
sidoidlist_p.push_back(_sub_id);
sidoidlist_p.push_back(_obj_id);
sidlist_p.push_back(_sub_id);
_pre_change = (i + 1 == valid_num) || (id_tuples[i][1] != id_tuples[i + 1][1]);
_sub_change = (i + 1 == valid_num) || (id_tuples[i][0] != id_tuples[i + 1][0]);
//_pre_sub_change = _pre_change || _sub_change;
if (_pre_change)
{
this->kvstore->updateRemove_p2s(_pre_id, sidlist_p);
sidlist_p.clear();
sort(oidlist_p.begin(), oidlist_p.end());
this->kvstore->updateRemove_p2o(_pre_id, oidlist_p);
oidlist_p.clear();
this->kvstore->updateRemove_p2so(_pre_id, sidoidlist_p);
sidoidlist_p.clear();
pre_degree = this->kvstore->getPredicateDegree(_pre_id);
if (pre_degree == 0)
{
tmpstr = this->kvstore->getPredicateByID(_pre_id);
this->kvstore->subPredicateByID(_pre_id);
this->kvstore->subIDByPredicate(tmpstr);
this->freePredicateID(_pre_id);
2017-01-16 14:12:57 +08:00
//add pre info
predicates.push_back(_pre_id);
2016-09-18 20:01:57 +08:00
}
}
}
#ifdef DEBUG
cout << "INSERT PROCESS: OUT p2so..." << endl;
#endif
2016-09-18 20:01:57 +08:00
}
for (int i = 0; i < valid_num; ++i)
{
delete[] id_tuples[i];
}
delete[] id_tuples;
#else
//NOTICE:we deal with deletions one by one here
//Callers should save the vstree(node and info) after calling this function
2017-03-24 20:10:43 +08:00
for (TYPE_TRIPLE_NUM i = 0; i < _triple_num; ++i)
{
bool ret = this->removeTriple(_triples[i], &vertices, &predicates);
if(ret)
{
valid_num++;
}
}
#endif
//update string index
2017-01-16 14:12:57 +08:00
this->stringindex->disable(vertices, true);
this->stringindex->disable(predicates, false);
2016-09-18 20:01:57 +08:00
//BETTER+TODO:this will require us to lock all when remove process not ends(in multiple threads cases)
//An considerable idea is to check if empty after every triple removed
if(this->vstree->isEmpty())
{
this->resetIDinfo();
}
return valid_num;
2016-09-18 20:01:57 +08:00
}
bool
Database::backup()
{
if (!Util::dir_exist(Util::backup_path))
{
Util::create_dir(Util::backup_path);
}
string backup_path = Util::backup_path + this->store_path;
cout << "Beginning backup." << endl;
string sys_cmd;
if (Util::dir_exist(backup_path))
{
sys_cmd = "rm -rf " + backup_path;
system(sys_cmd.c_str());
}
sys_cmd = "cp -r " + this->store_path + ' ' + backup_path;
system(sys_cmd.c_str());
sys_cmd = "rm " + backup_path + '/' + this->update_log;
system(sys_cmd.c_str());
this->vstree->saveTree();
this->kvstore->flush();
this->clear_update_log();
string update_log_path = this->store_path + '/' + this->update_log_since_backup;
sys_cmd = "rm " + update_log_path;
system(sys_cmd.c_str());
Util::create_file(update_log_path);
cout << "Backup completed!" << endl;
return true;
}
bool
Database::restore()
{
cout << "Begining restore." << endl;
string sys_cmd;
multiset<string> insertions;
multiset<string> removals;
int num_update = 0;
if (!this->load())
{
this->clear();
string backup_path = Util::backup_path + this->store_path;
if (!Util::dir_exist(Util::backup_path))
{
cerr << "Failed to restore!" << endl;
return false;
}
num_update += Database::read_update_log(this->store_path + '/' + this->update_log_since_backup, insertions, removals);
cout << "Failed to restore from original db file, trying to restore from backup file." << endl;
cout << "Your old db file will be stored at " << this->store_path << ".bad" << endl;
sys_cmd = "rm -rf " + this->store_path + ".bad";
system(sys_cmd.c_str());
sys_cmd = "cp -r " + this->store_path + ' ' + this->store_path + ".bad";
system(sys_cmd.c_str());
sys_cmd = "rm -rf " + this->store_path;
system(sys_cmd.c_str());
sys_cmd = "cp -r " + backup_path + ' ' + this->store_path;
system(sys_cmd.c_str());
Util::create_file(this->store_path + '/' + this->update_log);
if (!this->load())
{
this->clear();
cerr << "Failed to restore from backup file." << endl;
return false;
}
num_update += Database::read_update_log(this->store_path + '/' + this->update_log_since_backup, insertions, removals);
}
else
{
num_update += Database::read_update_log(this->store_path + '/' + this->update_log, insertions, removals);
}
cout << "Restoring " << num_update << " updates." << endl;
if (!this->restore_update(insertions, removals))
{
cerr << "Failed to restore updates" << endl;
return false;
}
cout << "Restore completed." << endl;
return true;
}
int
Database::read_update_log(const string _path, multiset<string>& _i, multiset<string>& _r)
{
ifstream in;
#ifdef DEBUG
cout<<_path<<endl;
#endif
in.open(_path.c_str(), ios::in);
if (!in) {
cerr << "Failed to read update log." << endl;
return 0;
}
int ret = 0;
int buffer_size = 1024 + 2;
char buffer[buffer_size];
in.getline(buffer, buffer_size);
while (!in.eof() && buffer[0]) {
string triple;
switch (buffer[0]) {
case 'I':
triple = string(buffer + 2);
ret++;
_i.insert(triple);
break;
case 'R':
triple = string(buffer + 2);
ret++;
_r.insert(triple);
break;
default:
cerr << "Bad line in update log!" << endl;
}
in.getline(buffer, buffer_size);
}
return ret;
}
bool
Database::restore_update(multiset<string>& _i, multiset<string>& _r)
{
multiset<string>::iterator pos;
multiset<string>::iterator it_to_erase = _r.end();
for (multiset<string>::iterator it = _r.begin(); it != _r.end(); it++)
{
//NOTICE: check the intersect of insert_set and remove_set
if (it_to_erase != _r.end()) {
_r.erase(it_to_erase);
}
pos = _i.find(*it);
if (pos != _i.end()) {
_i.erase(pos);
it_to_erase = it;
}
else {
it_to_erase = _r.end();
}
}
if (it_to_erase != _r.end()) {
_r.erase(it_to_erase);
}
string tmp_path = this->store_path + "/.update_tmp";
ofstream out_i;
out_i.open(tmp_path.c_str(), ios::out);
if (!out_i) {
cerr << "Failed to open temp file, restore failed!" << endl;
return false;
}
for (multiset<string>::iterator it = _i.begin(); it != _i.end(); it++) {
out_i << *it << endl;
}
out_i.close();
if (!this->insert(tmp_path, true))
//if (!this->remove(tmp_path, true))
{
return false;
}
ofstream out_r;
out_r.open(tmp_path.c_str(), ios::out);
if (!out_r) {
cerr << "Failed to open temp file!" << endl;
return false;
}
for (multiset<string>::iterator it = _r.begin(); it != _r.end(); it++) {
out_r << *it << endl;
}
out_r.close();
if (!this->remove(tmp_path, true))
//if (!this->insert(tmp_path, true))
{
return false;
}
string cmd = "rm " + tmp_path;
system(cmd.c_str());
return true;
}
void
Database::clear_update_log()
{
string cmd = "rm " + this->store_path + '/' + this->update_log;
system(cmd.c_str());
Util::create_file(this->store_path + '/' + this->update_log);
}
2016-09-18 20:01:57 +08:00
bool
2017-03-24 20:10:43 +08:00
Database::objIDIsEntityID(TYPE_ENTITY_LITERAL_ID _id)
2016-09-18 20:01:57 +08:00
{
return _id < Util::LITERAL_FIRST_ID;
}
bool
Database::getFinalResult(SPARQLquery& _sparql_q, ResultSet& _result_set)
{
#ifdef DEBUG_PRECISE
printf("getFinalResult:begins\n");
#endif
// this is only selected var num
int _var_num = _sparql_q.getQueryVarNum();
_result_set.setVar(_sparql_q.getQueryVar());
vector<BasicQuery*>& query_vec = _sparql_q.getBasicQueryVec();
//sum the answer number
2017-03-24 20:10:43 +08:00
unsigned _ans_num = 0;
2016-09-18 20:01:57 +08:00
#ifdef DEBUG_PRECISE
printf("getFinalResult:before ansnum loop\n");
#endif
for (unsigned i = 0; i < query_vec.size(); i++)
{
_ans_num += query_vec[i]->getResultList().size();
}
#ifdef DEBUG_PRECISE
printf("getFinalResult:after ansnum loop\n");
#endif
_result_set.ansNum = _ans_num;
#ifndef STREAM_ON
_result_set.answer = new string*[_ans_num];
2017-03-24 20:10:43 +08:00
for (unsigned i = 0; i < _result_set.ansNum; i++)
2016-09-18 20:01:57 +08:00
{
_result_set.answer[i] = NULL;
}
#else
2017-03-24 20:10:43 +08:00
vector<unsigned> keys;
2016-09-18 20:01:57 +08:00
vector<bool> desc;
2017-02-28 20:32:01 +08:00
_result_set.openStream(keys, desc);
//_result_set.openStream(keys, desc, 0, -1);
2016-09-18 20:01:57 +08:00
#ifdef DEBUG_PRECISE
printf("getFinalResult:after open stream\n");
#endif
#endif
#ifdef DEBUG_PRECISE
printf("getFinalResult:before main loop\n");
#endif
2017-03-24 20:10:43 +08:00
unsigned tmp_ans_count = 0;
2016-09-18 20:01:57 +08:00
//map int ans into string ans
//union every basic result into total result
for (unsigned i = 0; i < query_vec.size(); i++)
{
2017-03-24 20:10:43 +08:00
vector<unsigned*>& tmp_vec = query_vec[i]->getResultList();
2016-09-18 20:01:57 +08:00
//ensure the spo order is right, but the triple order is still reversed
//for every result group in resultlist
//for(vector<int*>::reverse_iterator itr = tmp_vec.rbegin(); itr != tmp_vec.rend(); ++itr)
2017-03-24 20:10:43 +08:00
for (vector<unsigned*>::iterator itr = tmp_vec.begin(); itr != tmp_vec.end(); ++itr)
2016-09-18 20:01:57 +08:00
{
//to ensure the order so do reversely in two nested loops
#ifndef STREAM_ON
_result_set.answer[tmp_ans_count] = new string[_var_num];
#endif
#ifdef DEBUG_PRECISE
printf("getFinalResult:before map loop\n");
#endif
//NOTICE: in new join method only selec_var_num columns,
//but before in shenxuchuan's join method, not like this.
//though there is all graph_var_num columns in result_list,
//we only consider the former selected vars
//map every ans_id into ans_str
for (int v = 0; v < _var_num; ++v)
{
2017-03-24 20:10:43 +08:00
unsigned ans_id = (*itr)[v];
2016-09-18 20:01:57 +08:00
string ans_str;
if (this->objIDIsEntityID(ans_id))
{
ans_str = (this->kvstore)->getEntityByID(ans_id);
}
else
{
ans_str = (this->kvstore)->getLiteralByID(ans_id);
}
#ifndef STREAM_ON
_result_set.answer[tmp_ans_count][v] = ans_str;
#else
_result_set.writeToStream(ans_str);
#endif
#ifdef DEBUG_PRECISE
printf("getFinalResult:after copy/write\n");
#endif
}
tmp_ans_count++;
}
}
#ifdef STREAM_ON
_result_set.resetStream();
#endif
#ifdef DEBUG_PRECISE
printf("getFinalResult:ends\n");
#endif
return true;
}
2017-03-24 20:10:43 +08:00
//void
//Database::printIDlist(int _i, int* _list, int _len, string _log)
//{
//stringstream _ss;
//_ss << "[" << _i << "] ";
//for (int i = 0; i < _len; i++) {
//_ss << _list[i] << "\t";
//}
//Util::logging("==" + _log + ":");
//Util::logging(_ss.str());
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//void
//Database::printPairList(int _i, int* _list, int _len, string _log)
//{
//stringstream _ss;
//_ss << "[" << _i << "] ";
//for (int i = 0; i < _len; i += 2) {
//_ss << "[" << _list[i] << "," << _list[i + 1] << "]\t";
//}
//Util::logging("==" + _log + ":");
//Util::logging(_ss.str());
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//void
//Database::test()
//{
//int subNum = 9, preNum = 20, objNum = 90;
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//int* _id_list = NULL;
//int _list_len = 0;
//{ [> x2ylist <]
//for (int i = 0; i < subNum; i++)
//{
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//(this->kvstore)->getobjIDlistBysubID(i, _id_list, _list_len);
//if (_list_len != 0)
//{
//stringstream _ss;
//this->printIDlist(i, _id_list, _list_len, "s2olist[" + _ss.str() + "]");
//delete[] _id_list;
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//[> o2slist <]
//(this->kvstore)->getsubIDlistByobjID(i, _id_list, _list_len);
//if (_list_len != 0)
//{
//stringstream _ss;
//this->printIDlist(i, _id_list, _list_len, "o(sub)2slist[" + _ss.str() + "]");
//delete[] _id_list;
//}
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//for (int i = 0; i < objNum; i++)
//{
//int _i = Util::LITERAL_FIRST_ID + i;
//(this->kvstore)->getsubIDlistByobjID(_i, _id_list, _list_len);
//if (_list_len != 0)
//{
//stringstream _ss;
//this->printIDlist(_i, _id_list, _list_len, "o(literal)2slist[" + _ss.str() + "]");
//delete[] _id_list;
//}
//}
//}
//{ [> xy2zlist <]
//for (int i = 0; i < subNum; i++)
//{
//for (int j = 0; j < preNum; j++)
//{
//(this->kvstore)->getobjIDlistBysubIDpreID(i, j, _id_list,
//_list_len);
//if (_list_len != 0)
//{
//stringstream _ss;
//_ss << "preid:" << j;
//this->printIDlist(i, _id_list, _list_len, "sp2olist[" + _ss.str() + "]");
//delete[] _id_list;
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//(this->kvstore)->getsubIDlistByobjIDpreID(i, j, _id_list,
//_list_len);
//if (_list_len != 0)
//{
//stringstream _ss;
//_ss << "preid:" << j;
//this->printIDlist(i, _id_list, _list_len, "o(sub)p2slist[" + _ss.str() + "]");
//delete[] _id_list;
//}
//}
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//for (int i = 0; i < objNum; i++)
//{
//int _i = Util::LITERAL_FIRST_ID + i;
//for (int j = 0; j < preNum; j++)
//{
//(this->kvstore)->getsubIDlistByobjIDpreID(_i, j, _id_list,
//_list_len);
//if (_list_len != 0)
//{
//stringstream _ss;
//_ss << "preid:" << j;
//this->printIDlist(_i, _id_list, _list_len,
//"*o(literal)p2slist[" + _ss.str() + "]");
//delete[] _id_list;
//}
//}
//}
//}
//{ [> x2yzlist <]
//for (int i = 0; i < subNum; i++)
//{
//(this->kvstore)->getpreIDobjIDlistBysubID(i, _id_list, _list_len);
//if (_list_len != 0)
//{
//this->printPairList(i, _id_list, _list_len, "s2polist");
//delete[] _id_list;
//_list_len = 0;
//}
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//for (int i = 0; i < subNum; i++)
//{
//(this->kvstore)->getpreIDsubIDlistByobjID(i, _id_list, _list_len);
//if (_list_len != 0)
//{
//this->printPairList(i, _id_list, _list_len, "o(sub)2pslist");
//delete[] _id_list;
//}
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//for (int i = 0; i < objNum; i++)
//{
//int _i = Util::LITERAL_FIRST_ID + i;
//(this->kvstore)->getpreIDsubIDlistByobjID(_i, _id_list, _list_len);
//if (_list_len != 0)
//{
//this->printPairList(_i, _id_list, _list_len,
//"o(literal)2pslist");
//delete[] _id_list;
//}
//}
//}
//}
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//void
//Database::test_build_sig()
//{
//BasicQuery* _bq = new BasicQuery("");
2016-09-18 20:01:57 +08:00
/*
* <!!!> y:created <!!!_(album)>.
* <!!!> y:created <Louden_Up_Now>.
* <!!!_(album)> y:hasSuccessor <Louden_Up_Now>
* <!!!_(album)> rdf:type <wordnet_album_106591815>
*
* id of <!!!> is 0
* id of <!!!_(album)> is 2
*
*
* ?x1 y:created ?x2.
* ?x1 y:created <Louden_Up_Now>.
* ?x2 y:hasSuccessor <Louden_Up_Now>.
* ?x2 rdf:type <wordnet_album_106591815>
*/
2017-03-24 20:10:43 +08:00
//{
//Triple _triple("?x1", "y:created", "?x2");
//_bq->addTriple(_triple);
//}
//{
//Triple _triple("?x1", "y:created", "<Louden_Up_Now>");
//_bq->addTriple(_triple);
//}
//{
//Triple _triple("?x2", "y:hasSuccessor", "<Louden_Up_Now>");
//_bq->addTriple(_triple);
//}
//{
//Triple _triple("?x2", "rdf:type", "<wordnet_album_106591815>");
//_bq->addTriple(_triple);
//}
//vector<string> _v;
//_v.push_back("?x1");
//_v.push_back("?x2");
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//_bq->encodeBasicQuery(this->kvstore, _v);
//Util::logging(_bq->to_str());
//SPARQLquery _q;
//_q.addBasicQuery(_bq);
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//(this->vstree)->retrieve(_q);
2016-09-18 20:01:57 +08:00
2017-03-24 20:10:43 +08:00
//Util::logging("\n\n");
//Util::logging("candidate:\n\n" + _q.candidate_str());
//}
2016-09-18 20:01:57 +08:00
//void
//Database::test_join()
//{
//BasicQuery* _bq = new BasicQuery("");
//
//* <!!!> y:created <!!!_(album)>.
//* <!!!> y:created <Louden_Up_Now>.
//* <!!!_(album)> y:hasSuccessor <Louden_Up_Now>
//* <!!!_(album)> rdf:type <wordnet_album_106591815>
//*
//* id of <!!!> is 0
//* id of <!!!_(album)> is 2
//*
//*
//* ?x1 y:created ?x2.
//* ?x1 y:created <Louden_Up_Now>.
//* ?x2 y:hasSuccessor <Louden_Up_Now>.
//* ?x2 rdf:type <wordnet_album_106591815>
//
//{
////Triple _triple("?x1", "y:created", "?x2");
//_bq->addTriple(_triple);
//}
//{
//Triple _triple("?x1", "y:created", "<Louden_Up_Now>");
//_bq->addTriple(_triple);
//}
//{
//Triple _triple("?x2", "y:hasSuccessor", "<Louden_Up_Now>");
//_bq->addTriple(_triple);
//}
//{
//Triple _triple("?x2", "rdf:type", "<wordnet_album_106591815>");
//_bq->addTriple(_triple);
//}
//vector<string> _v;
//_v.push_back("?x1");
//_v.push_back("?x2");
//_bq->encodeBasicQuery(this->kvstore, _v);
//Util::logging(_bq->to_str());
//SPARQLquery _q;
//_q.addBasicQuery(_bq);
//(this->vstree)->retrieve(_q);
//Util::logging("\n\n");
//Util::logging("candidate:\n\n"+_q.candidate_str());
//_q.print(cout);
//this->join(_q);
//ResultSet _rs;
//this->getFinalResult(_q, _rs);
//cout << _rs.to_str() << endl;
//}