// // FADctrl // #include #include #include #include "FAD.h" using namespace std; const string READLINE_HIST_FILE = string(getenv("HOME"))+"/.history_FADctrl"; // ================ // Main program // ================ int main() { // Uses getc() for readline library (allows interruption by signal) and load history buffer rl_getc_function = getc; read_history(READLINE_HIST_FILE.c_str()); system("clear"); printf("\n*** FADctrl (built %s, %s, revision %s) *** \n\n",__DATE__, __TIME__, REVISION); // Construct main instance (static ensures destructor is called with exit()) static class FAD M; // Do not kill process if writing to closed socket signal(SIGPIPE, SIG_IGN); // Command loop char *Command; std::string LastHist; while (!M.ExitRequest) { Command = readline("\rFADctrl> "); // Check for interruption by signal if (Command == NULL) continue; // Add command to history if(strlen(Command) > 0 && LastHist != Command) { add_history(Command); LastHist = Command; } // Process command (use SendCommandNB(), see mail from C. Gaspar 18/2/2011) DimClient::sendCommandNB(SERVER_NAME"/Command", Command); free(Command); } // Save history buffer int Ret = write_history(READLINE_HIST_FILE.c_str()); if (Ret != 0 ) printf("Error writing history file to '%s' (%s)\n", READLINE_HIST_FILE.c_str(), strerror(Ret)); }