From c1a7848670648f63b3f969f2a6cbdcd36424197b Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Wed, 29 Feb 2012 03:46:22 -0800 Subject: [PATCH] NSM: Minor cleanup. --- session-manager/src/nsmd.C | 10 +++++ session-manager/src/session-manager.C | 60 +++++++++++++++++---------- 2 files changed, 49 insertions(+), 21 deletions(-) diff --git a/session-manager/src/nsmd.C b/session-manager/src/nsmd.C index 86282ed..9e94110 100644 --- a/session-manager/src/nsmd.C +++ b/session-manager/src/nsmd.C @@ -695,6 +695,15 @@ OSC_HANDLER( announce ) int minor = argv[4]->i; int pid = argv[5]->i; + if ( ! session_path ) + { + osc_server->send( lo_message_get_source( msg ), "/error", + path, + ERR_NO_SESSION_OPEN, + "Sorry, but there's no session open for this application to join." ); + return 0; + } + bool expected_client = false; Client *c = NULL; @@ -727,6 +736,7 @@ OSC_HANDLER( announce ) DMESSAGE( "Client is using incompatible and more recent API version %i.%i", major, minor ); osc_server->send( lo_message_get_source( msg ), "/error", + path, ERR_INCOMPATIBLE_API, "Server is using an incompatible API version." ); diff --git a/session-manager/src/session-manager.C b/session-manager/src/session-manager.C index 4a5f77c..10e8ca5 100644 --- a/session-manager/src/session-manager.C +++ b/session-manager/src/session-manager.C @@ -21,6 +21,8 @@ #include "OSC/Endpoint.H" +#include + #include #include #include @@ -470,6 +472,12 @@ public: return NULL; } + + const char *session_name ( void ) const + { + clients_pack->parent()->label(); + } + void session_name ( const char *name ) { @@ -892,6 +900,31 @@ ping ( void * ) Fl::repeat_timeout( 1.0, ping, NULL ); } +void +cb_main ( Fl_Widget *o, void *v ) +{ + if ( Fl::event_key() != FL_Escape ) + { + int children = 0; + foreach_daemon ( d ) + { + if ( (*d)->is_child ) + ++children; + } + + if ( children ) + { + if ( strlen( controller->session_name() ) ) + { + fl_message( "%s", "You have to close the session before you can quit." ); + return; + } + } + + while ( Fl::first_window() ) Fl::first_window()->hide(); + } +} + int main (int argc, char **argv ) { @@ -924,12 +957,12 @@ main (int argc, char **argv ) o->size_range( main_window->w(), controller->min_h(), 0, 0 ); -// o->callback( (Fl_Callback*)cb_main, main_window ); + o->callback( (Fl_Callback*)cb_main, main_window ); #ifdef HAVE_XPM o->icon((char *)p); #endif - o->show( argc, argv ); + o->show( 0, NULL ); } static struct option long_options[] = @@ -999,9 +1032,7 @@ main (int argc, char **argv ) { /* pass non-option arguments on to daemon */ - option_index += 2; - - char **args = (char **)malloc( 4 + argc - option_index ); + char **args = (char **)malloc( 4 + argc - optind ); int i = 0; args[i++] = (char*)"nsmd"; @@ -1009,10 +1040,10 @@ main (int argc, char **argv ) args[i++] = url; - for ( ; option_index < argc; i++, option_index++ ) + for ( ; optind < argc; i++, optind++ ) { - DMESSAGE( "Passing argument: %s", argv[option_index] ); - args[i] = argv[option_index]; + DMESSAGE( "Passing argument: %s", argv[optind] ); + args[i] = argv[optind]; } args[i] = 0; @@ -1039,16 +1070,3 @@ main (int argc, char **argv ) return 0; } - - - - - - - - - - - - -