onion-wownero-blockchain-ex.../main.cpp

114 lines
2.4 KiB
C++
Raw Normal View History

2016-04-06 06:53:37 +00:00
2016-04-13 08:46:08 +00:00
#include "src/CmdLineOptions.h"
2016-04-06 06:53:37 +00:00
#include "src/MicroCore.h"
2016-04-08 06:54:04 +00:00
#include "src/page.h"
2016-04-06 06:53:37 +00:00
#include "ext/crow/crow.h"
2016-04-07 07:01:49 +00:00
#include <fstream>
2016-04-06 06:53:37 +00:00
using boost::filesystem::path;
using namespace std;
2016-04-14 07:58:01 +00:00
// needed for log system of momero
2016-04-06 09:15:09 +00:00
namespace epee {
unsigned int g_test_dbg_lock_sleep = 0;
}
2016-04-13 08:46:08 +00:00
int main(int ac, const char* av[]) {
// get command line options
xmreg::CmdLineOptions opts {ac, av};
auto help_opt = opts.get_option<bool>("help");
// if help was chosen, display help text and finish
if (*help_opt)
{
return 0;
}
auto port_opt = opts.get_option<string>("port");
auto bc_path_opt = opts.get_option<string>("bc-path");
2016-04-14 07:58:01 +00:00
//cast port number in string to uint16
2016-04-13 08:46:08 +00:00
uint16_t app_port = boost::lexical_cast<uint16_t>(*port_opt);
2016-04-06 06:53:37 +00:00
2016-04-07 00:38:58 +00:00
path blockchain_path {"/home/mwo/.bitmonero/lmdb"};
2016-04-06 06:53:37 +00:00
2016-04-12 23:37:29 +00:00
// change timezone to Universtal time zone
2016-04-14 07:58:01 +00:00
// char old_tz[128];
// const char *tz_org = getenv("TZ");
2016-04-12 23:37:29 +00:00
2016-04-14 07:58:01 +00:00
// if (tz_org)
// {
// strcpy(old_tz, tz_org);
// }
2016-04-12 23:37:29 +00:00
2016-04-14 07:58:01 +00:00
// // set new timezone
// std::string tz = "TZ=Coordinated Universal Time";
// putenv(const_cast<char *>(tz.c_str()));
// tzset(); // Initialize timezone data
2016-04-12 23:37:29 +00:00
2016-04-06 09:15:09 +00:00
// enable basic monero log output
xmreg::enable_monero_log();
// create instance of our MicroCore
xmreg::MicroCore mcore;
2016-04-07 05:41:15 +00:00
cryptonote::Blockchain* core_storage;
2016-04-06 09:15:09 +00:00
2016-04-07 05:41:15 +00:00
if (!xmreg::init_blockchain(blockchain_path.string(),
mcore, core_storage))
2016-04-06 09:15:09 +00:00
{
cerr << "Error accessing blockchain." << endl;
return 1;
}
2016-04-14 07:58:01 +00:00
// create instance of page class which
// coins logic for the website
2016-04-08 09:32:12 +00:00
xmreg::page xmrblocks(&mcore, core_storage);
2016-04-07 06:32:28 +00:00
2016-04-14 07:58:01 +00:00
// crow instance
2016-04-06 06:53:37 +00:00
crow::SimpleApp app;
2016-04-14 07:58:01 +00:00
2016-04-06 06:53:37 +00:00
CROW_ROUTE(app, "/")
2016-04-12 03:31:26 +00:00
([&]() {
return xmrblocks.index();
});
2016-04-15 02:59:41 +00:00
CROW_ROUTE(app, "/page/<uint>")
([&](size_t page_no) {
return xmrblocks.index(page_no);
});
CROW_ROUTE(app, "/autorefresh")
([&]() {
2016-04-15 02:59:41 +00:00
uint64_t page_no {0};
bool refresh_page {true};
2016-04-15 02:59:41 +00:00
return xmrblocks.index(page_no, refresh_page);
});
2016-04-12 03:31:26 +00:00
CROW_ROUTE(app, "/css/style.css")
([&]() {
return xmreg::read("./templates/css/style.css");
});
2016-04-14 07:58:01 +00:00
// run the crow http server
2016-04-13 08:46:08 +00:00
app.port(app_port).multithreaded().run();
2016-04-06 06:53:37 +00:00
2016-04-12 23:37:29 +00:00
// set timezone to orginal value
2016-04-14 07:58:01 +00:00
// if (tz_org != 0)
// {
// setenv("TZ", old_tz, 1);
// tzset();
// }
2016-04-12 23:37:29 +00:00
2016-04-06 06:53:37 +00:00
return 0;
}