Recognize return codes and display appropriate dialog. Works only if

executable was not found or file is not executable.
Add mutexes since childs return codes comes from second thread. This
will also prevent races when report dialogs are shown.
This commit is contained in:
Sanel Zukan 2007-09-14 12:31:03 +00:00
parent f0e0bc9032
commit 0876c5271d
5 changed files with 50 additions and 5 deletions

View File

@ -29,6 +29,8 @@
#include <edelib/MessageBox.h>
#include <edelib/Nls.h>
#include <FL/fl_ask.h>
#include <sys/types.h> // getpid
#include <unistd.h> //
#include <stdlib.h> // free
@ -448,13 +450,22 @@ void EvokeService::quit_x11(void) {
* Monitor starting service and report if staring
* failed. Also if one of runned services crashed
* attach gdb on it pid and run backtrace.
*
* FIXME: this function probably needs mutex locking; find_and_unregister_process()
* and unregister_process() are good candidates for it
*/
void EvokeService::service_watcher(int pid, int signum) {
printf("got %i\n", signum);
Mutex mutex;
if(signum == SPAWN_CHILD_CRASHED) {
EvokeProcess pc;
if(find_and_unregister_process(pid, pc)) {
mutex.lock();
bool ret = find_and_unregister_process(pid, pc);
mutex.unlock();
if(ret) {
printf("%s crashed with core dump\n", pc.cmd.c_str());
CrashDialog cdialog;
@ -464,11 +475,17 @@ void EvokeService::service_watcher(int pid, int signum) {
}
} else if(signum == SPAWN_CHILD_KILLED) {
printf("child %i killed\n", pid);
} else if(signum == 127) {
edelib::alert(_("Program not found"));
} else if(signum == 126) {
edelib::alert(_("Program not executable"));
} else {
printf("child %i exited with %i \n", pid, signum);
printf("child %i exited with %i\n", pid, signum);
}
mutex.lock();
unregister_process(pid);
mutex.unlock();
}
/*
@ -499,8 +516,13 @@ void EvokeService::run_program(const char* cmd, bool enable_vars) {
if(r != 0)
edelib::alert("Unable to start %s. Got code %i", cmd, r);
else
else {
Mutex mutex;
mutex.lock();
register_process(scmd.c_str(), child);
mutex.unlock();
}
}
#if 0

View File

@ -18,6 +18,8 @@
#include <edelib/String.h>
#include <FL/x.h>
#include <pthread.h>
struct EvokeClient {
edelib::String desc; // short program description (used in Starting... message)
edelib::String icon; // icon for this client
@ -90,4 +92,20 @@ class EvokeService {
#define EVOKE_LOG EvokeService::instance()->log()->printf
/*
* FIXME: This should be probably declared somewhere outside
* or in edelib as separate class
*/
class Mutex {
private:
pthread_mutex_t mutex;
Mutex(const Mutex&);
Mutex& operator=(const Mutex&);
public:
Mutex() { pthread_mutex_init(&mutex, 0); }
~Mutex() { pthread_mutex_destroy(&mutex); }
void lock(void) { pthread_mutex_lock(&mutex); }
void unlock(void) { pthread_mutex_unlock(&mutex); }
};
#endif

View File

@ -33,9 +33,12 @@ void sigchld_handler(int sig) {
int pid, status;
do {
errno = 0;
//pid = waitpid(WAIT_ANY, &status, WNOHANG | WUNTRACED);
pid = waitpid(WAIT_ANY, &status, WNOHANG);
if(global_watch != 0) {
printf("==> sigchld_handler() got %i\n", status);
if(WIFEXITED(status))
status = WEXITSTATUS(status);
else if(WIFSIGNALED(status) && WTERMSIG(status) == SIGSEGV)
@ -60,7 +63,6 @@ int spawn_program(const char* cmd, SignalWatch wf, pid_t* child_pid_ret, const c
struct sigaction sa;
sa.sa_handler = sigchld_handler;
sa.sa_flags = SA_NOCLDSTOP;
//sa.sa_flags = SA_RESTART;
sigemptyset(&sa.sa_mask);
sigaction(SIGCHLD, &sa, (struct sigaction*)0);

View File

@ -197,8 +197,10 @@ void Splash::run(void) {
EvokeService::instance()->unregister_top();
if(edelib::SoundSystem::inited())
if(edelib::SoundSystem::inited()) {
edelib::SoundSystem::stop();
edelib::SoundSystem::shutdown();
}
}
// called when splash option is on

View File

@ -6,6 +6,7 @@
#ImagesDirectory = /home/sanel/blentavo/EDE/ede2/evoke/images
Splash = splash-alpha1.png
Sound = startup.ogg
# Sound = Startup1_2.ogg
[edewm]
Icon = edewm.png