docs: replace crlf with lf

This commit is contained in:
bookug 2018-11-04 15:59:36 +08:00
parent a440706c1b
commit 3ec472d46f
1 changed files with 182 additions and 182 deletions

View File

@ -1,182 +1,182 @@
/*=============================================================================
# Filename: gbuild.cpp
# Author: Bookug Lobert suxunbin
# Mail: 1181955272@qq.com suxunbin@pku.edu.cn
# Last Modified: 2018-10-19 20:30
# Description: firstly written by liyouhuan, modified by zengli and suxunbin
TODO: add -h/--help for help message
=============================================================================*/
#include "../Util/Util.h"
#include "../Database/Database.h"
using namespace std;
#define SYSTEM_PATH "data/system/system.nt"
//[0]./gbuild [1]data_folder_path [2]rdf_file_path
int
main(int argc, char * argv[])
{
//chdir(dirname(argv[0]));
//#ifdef DEBUG
Util util;
//#endif
if(argc < 3) //./gbuild
{
//output help info here
cout << "the usage of gbuild: " << endl;
cout << "bin/gbuild your_database_name.db your_dataset_path" << endl;
return 0;
}
//system("clock");
cout << "gbuild..." << endl;
{
cout << "argc: " << argc << "\t";
cout << "DB_store:" << argv[1] << "\t";
cout << "RDF_data: " << argv[2] << "\t";
cout << endl;
}
string _db_path = string(argv[1]);
int len = _db_path.length();
if(_db_path.length() > 3 && _db_path.substr(len-3, 3) == ".db")
{
cout<<"your database can not end with .db"<<endl;
return -1;
}
//check if the db_name is system
if (_db_path == "system")
{
cout<< "Your database's name can not be system."<<endl;
return -1;
}
//if(_db_path[0] != '/' && _db_path[0] != '~') //using relative path
//{
//_db_path = string("../") + _db_path;
//}
string _rdf = string(argv[2]);
//check if the db_path is the path of system.nt
if (_rdf == SYSTEM_PATH)
{
cout<< "You have no rights to access system files"<<endl;
return -1;
}
//if(_rdf[0] != '/' && _rdf[0] != '~') //using relative path
//{
//_rdf = string("../") + _rdf;
//}
//check if the database is already built
int isbuilt;
if (boost::filesystem::exists(_db_path + ".db"))
isbuilt = 1;
else
isbuilt = 0;
//build database
Database _db(_db_path);
bool flag = _db.build(_rdf);
if (flag)
{
cout << "import RDF file to database done." << endl;
ofstream f;
f.open("./"+ _db_path +".db/success.txt");
f.close();
}
else //if fails, drop database and return
{
cout << "import RDF file to database failed." << endl;
string cmd = "rm -r " + _db_path + ".db";
system(cmd.c_str());
return 0;
}
if (!boost::filesystem::exists("system.db"))
return 0;
//system("clock");
Database system_db("system");
system_db.load();
//if isbuilt is false, add database information to system.db
if (isbuilt == 0)
{
string time = Util::get_date_time();
string sparql = "INSERT DATA {<" + _db_path + "> <database_status> \"already_built\"." + "<" + _db_path + "> <built_by> <root>."
+ "<" + _db_path + "> <built_time> \"" + time + "\".}";
ResultSet _rs;
FILE* ofp = stdout;
string msg;
int ret = system_db.query(sparql, _rs, ofp);
if (ret <= -100) // select query
{
if (ret == -100)
msg = _rs.to_str();
else //query error
msg = "query failed";
}
else //update query
{
if (ret >= 0)
msg = "update num : " + Util::int2string(ret);
else //update error
msg = "update failed.";
if (ret != -100)
cout << msg << endl;
}
return 0;
}
else //if isbuilt is true, update built_time of the database
{
string sparql = "DELETE {<" + _db_path + "> <built_time> ?t .}"
+ "WHERE{<" + _db_path + "> <built_time> ?t .}";
ResultSet _rs;
FILE* ofp = stdout;
string msg;
int ret = system_db.query(sparql, _rs, ofp);
if (ret <= -100) // select query
{
if (ret == -100)
msg = _rs.to_str();
else //query error
msg = "query failed";
}
else //update query
{
if (ret >= 0)
msg = "update num : " + Util::int2string(ret);
else //update error
msg = "update failed.";
if (ret != -100)
cout << msg << endl;
}
cout << "delete successfully" << endl;
}
string time = Util::get_date_time();
string sparql = "INSERT DATA {<" + _db_path + "> <built_time> \"" + time + "\".}";
ResultSet _rs;
FILE* ofp = stdout;
string msg;
int ret = system_db.query(sparql, _rs, ofp);
if (ret <= -100) // select query
{
if (ret == -100)
msg = _rs.to_str();
else //query error
msg = "query failed";
}
else //update query
{
if (ret >= 0)
msg = "update num : " + Util::int2string(ret);
else //update error
msg = "update failed.";
if (ret != -100)
cout << msg << endl;
}
cout << "insert successfully" << endl;
return 0;
}
/*=============================================================================
# Filename: gbuild.cpp
# Author: Bookug Lobert suxunbin
# Mail: 1181955272@qq.com suxunbin@pku.edu.cn
# Last Modified: 2018-10-19 20:30
# Description: firstly written by liyouhuan, modified by zengli and suxunbin
TODO: add -h/--help for help message
=============================================================================*/
#include "../Util/Util.h"
#include "../Database/Database.h"
using namespace std;
#define SYSTEM_PATH "data/system/system.nt"
//[0]./gbuild [1]data_folder_path [2]rdf_file_path
int
main(int argc, char * argv[])
{
//chdir(dirname(argv[0]));
//#ifdef DEBUG
Util util;
//#endif
if(argc < 3) //./gbuild
{
//output help info here
cout << "the usage of gbuild: " << endl;
cout << "bin/gbuild your_database_name.db your_dataset_path" << endl;
return 0;
}
//system("clock");
cout << "gbuild..." << endl;
{
cout << "argc: " << argc << "\t";
cout << "DB_store:" << argv[1] << "\t";
cout << "RDF_data: " << argv[2] << "\t";
cout << endl;
}
string _db_path = string(argv[1]);
int len = _db_path.length();
if(_db_path.length() > 3 && _db_path.substr(len-3, 3) == ".db")
{
cout<<"your database can not end with .db"<<endl;
return -1;
}
//check if the db_name is system
if (_db_path == "system")
{
cout<< "Your database's name can not be system."<<endl;
return -1;
}
//if(_db_path[0] != '/' && _db_path[0] != '~') //using relative path
//{
//_db_path = string("../") + _db_path;
//}
string _rdf = string(argv[2]);
//check if the db_path is the path of system.nt
if (_rdf == SYSTEM_PATH)
{
cout<< "You have no rights to access system files"<<endl;
return -1;
}
//if(_rdf[0] != '/' && _rdf[0] != '~') //using relative path
//{
//_rdf = string("../") + _rdf;
//}
//check if the database is already built
int isbuilt;
if (boost::filesystem::exists(_db_path + ".db"))
isbuilt = 1;
else
isbuilt = 0;
//build database
Database _db(_db_path);
bool flag = _db.build(_rdf);
if (flag)
{
cout << "import RDF file to database done." << endl;
ofstream f;
f.open("./"+ _db_path +".db/success.txt");
f.close();
}
else //if fails, drop database and return
{
cout << "import RDF file to database failed." << endl;
string cmd = "rm -r " + _db_path + ".db";
system(cmd.c_str());
return 0;
}
if (!boost::filesystem::exists("system.db"))
return 0;
//system("clock");
Database system_db("system");
system_db.load();
//if isbuilt is false, add database information to system.db
if (isbuilt == 0)
{
string time = Util::get_date_time();
string sparql = "INSERT DATA {<" + _db_path + "> <database_status> \"already_built\"." + "<" + _db_path + "> <built_by> <root>."
+ "<" + _db_path + "> <built_time> \"" + time + "\".}";
ResultSet _rs;
FILE* ofp = stdout;
string msg;
int ret = system_db.query(sparql, _rs, ofp);
if (ret <= -100) // select query
{
if (ret == -100)
msg = _rs.to_str();
else //query error
msg = "query failed";
}
else //update query
{
if (ret >= 0)
msg = "update num : " + Util::int2string(ret);
else //update error
msg = "update failed.";
if (ret != -100)
cout << msg << endl;
}
return 0;
}
else //if isbuilt is true, update built_time of the database
{
string sparql = "DELETE {<" + _db_path + "> <built_time> ?t .}"
+ "WHERE{<" + _db_path + "> <built_time> ?t .}";
ResultSet _rs;
FILE* ofp = stdout;
string msg;
int ret = system_db.query(sparql, _rs, ofp);
if (ret <= -100) // select query
{
if (ret == -100)
msg = _rs.to_str();
else //query error
msg = "query failed";
}
else //update query
{
if (ret >= 0)
msg = "update num : " + Util::int2string(ret);
else //update error
msg = "update failed.";
if (ret != -100)
cout << msg << endl;
}
cout << "delete successfully" << endl;
}
string time = Util::get_date_time();
string sparql = "INSERT DATA {<" + _db_path + "> <built_time> \"" + time + "\".}";
ResultSet _rs;
FILE* ofp = stdout;
string msg;
int ret = system_db.query(sparql, _rs, ofp);
if (ret <= -100) // select query
{
if (ret == -100)
msg = _rs.to_str();
else //query error
msg = "query failed";
}
else //update query
{
if (ret >= 0)
msg = "update num : " + Util::int2string(ret);
else //update error
msg = "update failed.";
if (ret != -100)
cout << msg << endl;
}
cout << "insert successfully" << endl;
return 0;
}