You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
6.2 KiB
168 lines
6.2 KiB
#ifndef STORM_UTILITY_CLI_H_
|
|
#define STORM_UTILITY_CLI_H_
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <cstdio>
|
|
#include <sstream>
|
|
|
|
|
|
#include "src/utility/OsDetection.h"
|
|
// Registers all standard options
|
|
#include "src/utility/StormOptions.h"
|
|
|
|
|
|
// Includes for the linked libraries and versions header
|
|
#ifdef STORM_HAVE_INTELTBB
|
|
# include "tbb/tbb_stddef.h"
|
|
#endif
|
|
#ifdef STORM_HAVE_GLPK
|
|
# include "glpk.h"
|
|
#endif
|
|
#ifdef STORM_HAVE_GUROBI
|
|
# include "gurobi_c.h"
|
|
#endif
|
|
#ifdef STORM_HAVE_Z3
|
|
# include "z3.h"
|
|
#endif
|
|
|
|
/*!
|
|
* Gives the current working directory
|
|
*
|
|
* @return std::string The path of the current working directory
|
|
*/
|
|
std::string getCurrentWorkingDirectory() {
|
|
char temp[512];
|
|
return (GetCurrentDir(temp, 512 - 1) ? std::string(temp) : std::string(""));
|
|
}
|
|
|
|
|
|
void printUsage() {
|
|
#ifndef WINDOWS
|
|
struct rusage ru;
|
|
getrusage(RUSAGE_SELF, &ru);
|
|
|
|
std::cout << "===== Statistics ==============================" << std::endl;
|
|
std::cout << "peak memory usage: " << ru.ru_maxrss/1024/1024 << "MB" << std::endl;
|
|
std::cout << "CPU time: " << ru.ru_utime.tv_sec << "." << std::setw(3) << std::setfill('0') << ru.ru_utime.tv_usec/1000 << " seconds" << std::endl;
|
|
std::cout << "===============================================" << std::endl;
|
|
#else
|
|
HANDLE hProcess = GetCurrentProcess ();
|
|
FILETIME ftCreation, ftExit, ftUser, ftKernel;
|
|
PROCESS_MEMORY_COUNTERS pmc;
|
|
if (GetProcessMemoryInfo( hProcess, &pmc, sizeof(pmc))) {
|
|
std::cout << "Memory Usage: " << std::endl;
|
|
std::cout << "\tPageFaultCount: " << pmc.PageFaultCount << std::endl;
|
|
std::cout << "\tPeakWorkingSetSize: " << pmc.PeakWorkingSetSize << std::endl;
|
|
std::cout << "\tWorkingSetSize: " << pmc.WorkingSetSize << std::endl;
|
|
std::cout << "\tQuotaPeakPagedPoolUsage: " << pmc.QuotaPeakPagedPoolUsage << std::endl;
|
|
std::cout << "\tQuotaPagedPoolUsage: " << pmc.QuotaPagedPoolUsage << std::endl;
|
|
std::cout << "\tQuotaPeakNonPagedPoolUsage: " << pmc.QuotaPeakNonPagedPoolUsage << std::endl;
|
|
std::cout << "\tQuotaNonPagedPoolUsage: " << pmc.QuotaNonPagedPoolUsage << std::endl;
|
|
std::cout << "\tPagefileUsage:" << pmc.PagefileUsage << std::endl;
|
|
std::cout << "\tPeakPagefileUsage: " << pmc.PeakPagefileUsage << std::endl;
|
|
}
|
|
|
|
GetProcessTimes (hProcess, &ftCreation, &ftExit, &ftKernel, &ftUser);
|
|
|
|
ULARGE_INTEGER uLargeInteger;
|
|
uLargeInteger.LowPart = ftKernel.dwLowDateTime;
|
|
uLargeInteger.HighPart = ftKernel.dwHighDateTime;
|
|
double kernelTime = static_cast<double>(uLargeInteger.QuadPart) / 10000.0; // 100 ns Resolution to milliseconds
|
|
uLargeInteger.LowPart = ftUser.dwLowDateTime;
|
|
uLargeInteger.HighPart = ftUser.dwHighDateTime;
|
|
double userTime = static_cast<double>(uLargeInteger.QuadPart) / 10000.0;
|
|
|
|
std::cout << "CPU Time: " << std::endl;
|
|
std::cout << "\tKernel Time: " << std::setprecision(5) << kernelTime << "ms" << std::endl;
|
|
std::cout << "\tUser Time: " << std::setprecision(5) << userTime << "ms" << std::endl;
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
* Prints the header.
|
|
*/
|
|
void printHeader(const int argc, const char* argv[]) {
|
|
std::cout << "StoRM" << std::endl;
|
|
std::cout << "-----" << std::endl << std::endl;
|
|
|
|
std::cout << "Version: " << STORM_CPP_VERSION_MAJOR << "." << STORM_CPP_VERSION_MINOR << "." << STORM_CPP_VERSION_PATCH;
|
|
if (STORM_CPP_VERSION_COMMITS_AHEAD != 0) {
|
|
std::cout << " (+" << STORM_CPP_VERSION_COMMITS_AHEAD << " commits)";
|
|
}
|
|
std::cout << " build from revision " << STORM_CPP_VERSION_HASH;
|
|
if (STORM_CPP_VERSION_DIRTY == 1) {
|
|
std::cout << " (DIRTY)";
|
|
}
|
|
std::cout << "." << std::endl;
|
|
|
|
#ifdef STORM_HAVE_INTELTBB
|
|
std::cout << "Linked with Intel Threading Building Blocks v" << TBB_VERSION_MAJOR << "." << TBB_VERSION_MINOR << " (Interface version " << TBB_INTERFACE_VERSION << ")." << std::endl;
|
|
#endif
|
|
#ifdef STORM_HAVE_GLPK
|
|
std::cout << "Linked with GNU Linear Programming Kit v" << GLP_MAJOR_VERSION << "." << GLP_MINOR_VERSION << "." << std::endl;
|
|
#endif
|
|
#ifdef STORM_HAVE_GUROBI
|
|
std::cout << "Linked with Gurobi Optimizer v" << GRB_VERSION_MAJOR << "." << GRB_VERSION_MINOR << "." << GRB_VERSION_TECHNICAL << "." << std::endl;
|
|
#endif
|
|
#ifdef STORM_HAVE_Z3
|
|
unsigned int z3Major, z3Minor, z3BuildNumber, z3RevisionNumber;
|
|
Z3_get_version(&z3Major, &z3Minor, &z3BuildNumber, &z3RevisionNumber);
|
|
std::cout << "Linked with Microsoft Z3 Optimizer v" << z3Major << "." << z3Minor << " Build " << z3BuildNumber << " Rev " << z3RevisionNumber << "." << std::endl;
|
|
#endif
|
|
|
|
// "Compute" the command line argument string with which STORM was invoked.
|
|
std::stringstream commandStream;
|
|
for (int i = 0; i < argc; ++i) {
|
|
commandStream << argv[i] << " ";
|
|
}
|
|
std::cout << "Command line: " << commandStream.str() << std::endl << std::endl;
|
|
std::cout << "Current working directory: " << getCurrentWorkingDirectory() << std::endl << std::endl;
|
|
}
|
|
|
|
/*!
|
|
* Parses the given command line arguments.
|
|
*
|
|
* @param argc The argc argument of main().
|
|
* @param argv The argv argument of main().
|
|
* @return True iff the program should continue to run after parsing the options.
|
|
*/
|
|
bool parseOptions(const int argc, const char* argv[]) {
|
|
storm::settings::Settings* s = storm::settings::Settings::getInstance();
|
|
try {
|
|
storm::settings::Settings::parse(argc, argv);
|
|
} catch (storm::exceptions::OptionParserException& e) {
|
|
std::cout << "Could not recover from settings error: " << e.what() << "." << std::endl;
|
|
std::cout << std::endl << s->getHelpText();
|
|
return false;
|
|
}
|
|
|
|
if (s->isSet("help")) {
|
|
std::cout << storm::settings::Settings::getInstance()->getHelpText();
|
|
return false;
|
|
}
|
|
|
|
if (s->isSet("verbose")) {
|
|
logger.getAppender("mainConsoleAppender")->setThreshold(log4cplus::INFO_LOG_LEVEL);
|
|
LOG4CPLUS_INFO(logger, "Enabled verbose mode, log output gets printed to console.");
|
|
}
|
|
if (s->isSet("debug")) {
|
|
logger.setLogLevel(log4cplus::DEBUG_LOG_LEVEL);
|
|
logger.getAppender("mainConsoleAppender")->setThreshold(log4cplus::DEBUG_LOG_LEVEL);
|
|
LOG4CPLUS_INFO(logger, "Enabled very verbose mode, log output gets printed to console.");
|
|
}
|
|
if (s->isSet("trace")) {
|
|
logger.setLogLevel(log4cplus::TRACE_LOG_LEVEL);
|
|
logger.getAppender("mainConsoleAppender")->setThreshold(log4cplus::TRACE_LOG_LEVEL);
|
|
LOG4CPLUS_INFO(logger, "Enabled trace mode, log output gets printed to console.");
|
|
}
|
|
if (s->isSet("logfile")) {
|
|
setUpFileLogging();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
#endif
|