// FbRun.cc // Copyright (c) 2002 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org) // // 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. // $Id$ #include "FbRun.hh" #include "App.hh" #include "EventManager.hh" #include "Color.hh" #include "KeyUtil.hh" #include "FileUtil.hh" #ifdef HAVE_CONFIG_H #include "config.h" #endif // HAVE_CONFIG_H #ifdef HAVE_XPM #include #include "fbrun.xpm" #endif // HAVE_XPM #include #include #include #include #include #include #include #include #include #ifdef HAVE_CASSERT #include #else #include #endif using namespace std; FbRun::FbRun(int x, int y, size_t width): FbTk::TextBox(DefaultScreen(FbTk::App::instance()->display()), m_font, ""), m_font("fixed"), m_display(FbTk::App::instance()->display()), m_bevel(4), m_gc(*this), m_end(false), m_current_history_item(0), m_current_apps_item(0), m_cursor(XCreateFontCursor(FbTk::App::instance()->display(), XC_xterm)) { setGC(m_gc.gc()); setCursor(m_cursor); // setting nomaximize in local resize resize(width, font().height() + m_bevel); // setup class name XClassHint *class_hint = XAllocClassHint(); if (class_hint == 0) throw string("Out of memory"); class_hint->res_name = "fbrun"; class_hint->res_class = "FbRun"; XSetClassHint(m_display, window(), class_hint); XFree(class_hint); #ifdef HAVE_XPM Pixmap mask = 0; Pixmap pm; XpmCreatePixmapFromData(m_display, window(), fbrun_xpm, &pm, &mask, 0); // attribs if (mask != 0) XFreePixmap(m_display, mask); m_pixmap = pm; #endif // HAVE_XPM if (m_pixmap.drawable()) { XWMHints wmhints; wmhints.flags = IconPixmapHint; wmhints.icon_pixmap = m_pixmap.drawable(); XSetWMHints(m_display, window(), &wmhints); } } FbRun::~FbRun() { hide(); } void FbRun::run(const std::string &command) { FbTk::App::instance()->end(); // end application m_end = true; // mark end of processing // fork and execute program if (!fork()) { setsid(); execl("/bin/sh", "/bin/sh", "-c", command.c_str(), static_cast(NULL)); exit(0); //exit child } hide(); // hide gui // save command history to file if (text().size() != 0) { // no need to save empty command // don't allow duplicates into the history file, first // look for a duplicate if (m_current_history_item < m_history.size() && text() == m_history[m_current_history_item]) { // m_current_history_item is the duplicate } else { m_current_history_item = 0; for (; m_current_history_item < m_history.size(); ++m_current_history_item) { if (m_history[m_current_history_item] == text()) break; } } fstream inoutfile(m_history_file.c_str(), ios::in|ios::out); if (inoutfile) { // now m_current_history_item points at the duplicate, or // at m_history.size() if no duplicate if (m_current_history_item != m_history.size()) { int i = 0; // read past history items before current for (; inoutfile.good() && i < m_current_history_item; i++) inoutfile.ignore(1, '\n'); // write the history items that come after current for (i++; i < m_history.size(); i++) inoutfile<end(); // end program break; case XK_KP_Enter: case XK_Return: run(text()); break; case XK_Up: prevHistoryItem(); break; case XK_Down: nextHistoryItem(); break; case XK_Tab: tabCompleteApps(); setCursorPosition(cp); break; } } clear(); } void FbRun::setNoMaximize() { // we don't need to maximize this window XSizeHints sh; sh.flags = PMaxSize | PMinSize; sh.max_width = width(); sh.max_height = height(); sh.min_width = width(); sh.min_height = height(); XSetWMNormalHints(m_display, window(), &sh); } void FbRun::prevHistoryItem() { if (m_history.size() == 0 || m_current_history_item == 0) { XBell(m_display, 0); } else { m_current_history_item--; setText(m_history[m_current_history_item]); } } void FbRun::nextHistoryItem() { if (m_current_history_item == m_history.size()) { XBell(m_display, 0); } else { m_current_history_item++; if (m_current_history_item == m_history.size()) { m_current_history_item = m_history.size(); setText(""); } else setText(m_history[m_current_history_item]); } } void FbRun::firstHistoryItem() { if (m_history.size() == 0 || m_current_history_item == 0) { XBell(m_display, 0); } else { m_current_history_item = 0; setText(m_history[m_current_history_item]); } } void FbRun::lastHistoryItem() { // actually one past the end if (m_history.size() == 0) { XBell(m_display, 0); } else { m_current_history_item = m_history.size(); setText(""); } } void FbRun::tabCompleteHistory() { if (m_current_history_item == 0 || m_history.empty() ) { XBell(m_display, 0); } else { unsigned int nr= 0; int history_item = m_current_history_item - 1; string prefix = text().substr(0, textStartPos() + cursorPosition()); while (history_item != m_current_history_item && nr++ < m_history.size()) { if (history_item <= -1 ) history_item= m_history.size() - 1; if (m_history[history_item].find(prefix) == 0) { m_current_history_item = history_item; setText(m_history[m_current_history_item]); break; } history_item--; } if (history_item == m_current_history_item) XBell(m_display, 0); } } void FbRun::tabCompleteApps() { static bool first_run= true; static string saved_prefix= ""; string prefix= text().substr(0, textStartPos() + cursorPosition()); FbTk::Directory dir; bool add_dirs= false; bool changed_prefix= false; // (re)build m_apps-container if (first_run || saved_prefix != prefix) { first_run= false; string path; if(!prefix.empty() && string("/.~").find_first_of(prefix[0]) != string::npos) { size_t rseparator= prefix.find_last_of("/"); path= prefix.substr(0, rseparator + 1) + ":"; add_dirs= true; } else path= getenv("PATH"); m_apps.clear(); unsigned int l; unsigned int r; for(l= 0, r= 0; r < path.size(); r++) { if ((path[r]==':' || r == path.size() - 1) && r - l > 0) { string filename; string fncomplete; dir.open(path.substr(l, r - l).c_str()); int n= dir.entries(); if (n >= 0) { while(n--) { filename= dir.readFilename(); fncomplete= dir.name() + (*dir.name().rbegin() != '/' ? "/" : "") + filename; // directories in dirmode ? if (add_dirs && FbTk::FileUtil::isDirectory(fncomplete.c_str()) && filename != ".." && filename != ".") { m_apps.push_back(fncomplete); // executables in dirmode ? } else if (add_dirs && FbTk::FileUtil::isRegularFile(fncomplete.c_str()) && FbTk::FileUtil::isExecutable(fncomplete.c_str()) && (prefix == "" || fncomplete.substr(0, prefix.size()) == prefix)) { m_apps.push_back(fncomplete); // executables in $PATH ? } else if (FbTk::FileUtil::isRegularFile(fncomplete.c_str()) && FbTk::FileUtil::isExecutable(fncomplete.c_str()) && (prefix == "" || filename.substr(0, prefix.size()) == prefix)) { m_apps.push_back(filename); } } } l= r + 1; dir.close(); } } sort(m_apps.begin(), m_apps.end()); unique(m_apps.begin(), m_apps.end()); saved_prefix= prefix; changed_prefix= true; m_current_apps_item= 0; } if (m_apps.empty() ) { XBell(m_display, 0); } else { size_t apps_item = m_current_apps_item + (changed_prefix ? 0 : 1); bool loop= false; while (true) { if (apps_item >= m_apps.size() ) { loop = true; apps_item = 0; } if ((!changed_prefix || loop) && apps_item == m_current_apps_item) { break; } if (m_apps[apps_item].find(prefix) == 0) { m_current_apps_item = apps_item; if (add_dirs && FbTk::FileUtil::isDirectory(m_apps[m_current_apps_item].c_str())) setText(m_apps[m_current_apps_item] + "/"); else setText(m_apps[m_current_apps_item]); break; } apps_item++; } if (!changed_prefix && apps_item == m_current_apps_item) XBell(m_display, 0); } } void FbRun::insertCharacter(char keychar) { char val[2] = {keychar, 0}; insertText(val); }