// main.cc for Fluxbox Window manager // Copyright (c) 2001 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org) // and 2003-2005 Simon Bowden (rathnor at users.sourceforge.net) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #include "fluxbox.hh" #include "version.h" #include "defaults.hh" #include "FbTk/Theme.hh" #include "FbTk/I18n.hh" #include "FbTk/CommandParser.hh" #ifdef HAVE_CONFIG_H #include "config.h" #endif // HAVE_CONFIG_H //use GNU extensions #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif // _GNU_SOURCE #ifdef HAVE_CSTDLIB #include #else #include #endif #ifdef HAVE_CSTRING #include #else #include #endif #include #include #include #include using std::cout; using std::cerr; using std::endl; using std::string; using std::ostream; using std::ofstream; using std::streambuf; using std::auto_ptr; using std::out_of_range; using std::runtime_error; using std::bad_cast; using std::bad_alloc; using std::exception; static void showInfo(ostream &ostr) { _FB_USES_NLS; ostr<<_FB_CONSOLETEXT(Common, FluxboxVersion, "Fluxbox version", "Fluxbox version heading")<<": "<<__fluxbox_version< 0) ostr << _FB_CONSOLETEXT(Common, SvnRevision, "GIT Revision", "Revision number in GIT repositary") << ": " << svnversion() << endl; #if defined(__DATE__) && defined(__TIME__) ostr<<_FB_CONSOLETEXT(Common, Compiled, "Compiled", "Time fluxbox was compiled")<<": "<<__DATE__<<" "<<__TIME__< "<< _FB_CONSOLETEXT(Common, Disabled, "disabled", "option is turned off")<<"): "<= argc) { cerr<<_FB_CONSOLETEXT(main, RCRequiresArg, "error: '-rc' requires an argument", "the -rc option requires a file argument")<= argc) { cerr<<_FB_CONSOLETEXT(main, DISPLAYRequiresArg, "error: '-display' requires an argument", "")<(display_env.c_str()))) { cerr<<_FB_CONSOLETEXT(main, WarnDisplayEnv, "warning: couldn't set environment variable 'DISPLAY'", "")<= argc) { cerr<<_FB_CONSOLETEXT(main, LOGRequiresArg, "error: '-log' needs an argument", "")<\t\tuse display connection.\n" "-screen \trun on specified screens only.\n" "-rc \t\t\tuse alternate resource file.\n" "-version\t\t\tdisplay version and exit.\n" "-info\t\t\t\tdisplay some useful information.\n" "-list-commands\t\t\tlist all valid key commands.\n" "-log \t\t\tlog output to file.\n" "-help\t\t\t\tdisplay this help text and exit.\n\n", "Main usage string. Please lay it out nicely. There is one %s that is given the version").c_str(), __fluxbox_version, "2001-2007"); exit(EXIT_SUCCESS); } else if (arg == "-info" || arg == "-i") { showInfo(cout); exit(EXIT_SUCCESS); } else if (arg == "-list-commands") { FbTk::CommandParser::CreatorMap cmap = FbTk::CommandParser::instance().creatorMap(); FbTk::CommandParser::CreatorMap::const_iterator it = cmap.begin(); const FbTk::CommandParser::CreatorMap::const_iterator it_end = cmap.end(); for (; it != it_end; ++it) cout << it->first << endl; exit(EXIT_SUCCESS); } else if (arg == "-verbose") { FbTk::ThemeManager::instance().setVerbose(true); } } #ifdef __EMX__ _chdir2(getenv("X11ROOT")); #endif // __EMX__ auto_ptr fluxbox; int exitcode=EXIT_FAILURE; streambuf *outbuf = 0; streambuf *errbuf = 0; ofstream log_file(log_filename.c_str()); // setup log file if (log_file) { cerr<<_FB_CONSOLETEXT(main, LoggingTo, "Logging to", "Logging to a file")<<": "<eventLoop(); exitcode = EXIT_SUCCESS; } catch (out_of_range &oor) { cerr<<"Fluxbox: "<<_FB_CONSOLETEXT(main, ErrorOutOfRange, "Out of range", "Error message")<<": "<isRestarting(); restart_argument = fluxbox->getRestartArgument(); } // destroy fluxbox fluxbox.reset(0); // restore cout and cin streams if (outbuf != 0) cout.rdbuf(outbuf); if (errbuf != 0) cerr.rdbuf(errbuf); FbTk::FbStringUtil::shutdown(); if (restarting) { if (!restart_argument.empty()) { const char *shell = getenv("SHELL"); if (!shell) shell = "/bin/sh"; execlp(shell, shell, "-c", restart_argument.c_str(), (const char *) NULL); perror(restart_argument.c_str()); } // fall back in case the above execlp doesn't work execvp(argv[0], argv); perror(argv[0]); const char *basename = FbTk::StringUtil::basename(argv[0]).c_str(); execvp(basename, argv); perror(basename); } return exitcode; }