summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-31 11:17:01 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-31 11:17:01 -0500
commit7c366d7a44f1028d0a21abf2b840d3cebfbbc748 (patch)
tree8001d28b349f2e03fee298192293aebb6727d716
parent2bf4850271230723a9a90c58eaaa58421ad21ce3 (diff)
downloadtdebase-7c366d7a44f1028d0a21abf2b840d3cebfbbc748.tar.gz
tdebase-7c366d7a44f1028d0a21abf2b840d3cebfbbc748.zip
Show program that is taking the longest to process the SmsDie request in the logout status dialog
Fix glitch in service termination
-rw-r--r--ksmserver/client.h3
-rw-r--r--ksmserver/shutdown.cpp28
2 files changed, 26 insertions, 5 deletions
diff --git a/ksmserver/client.h b/ksmserver/client.h
index 958511a37..e478cfc31 100644
--- a/ksmserver/client.h
+++ b/ksmserver/client.h
@@ -21,6 +21,7 @@ Copyright (C) 2000 Matthias Ettrich <ettrich@kde.org>
#include <tqptrdict.h>
#include <tdeapplication.h>
#include <tqtimer.h>
+#include <tqdatetime.h>
#include <dcopobject.h>
#include "server2.h"
@@ -52,6 +53,8 @@ public:
TQString userId() const;
const char* clientId() { return id ? id : ""; }
+ TQDateTime terminationRequestTimeStamp;
+
private:
const char* id;
SmsConn smsConn;
diff --git a/ksmserver/shutdown.cpp b/ksmserver/shutdown.cpp
index 9adad413a..1f44afde2 100644
--- a/ksmserver/shutdown.cpp
+++ b/ksmserver/shutdown.cpp
@@ -99,12 +99,12 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#endif // PROFILE_SHUTDOWN
// Time to wait after close request for graceful application termination
-// If set too high running applications may be ungracefully terminated on slow machines
+// If set too high running applications may be ungracefully terminated on slow machines or when many X11 applications are running
#define KSMSERVER_SHUTDOWN_CLIENT_UNRESPONSIVE_TIMEOUT 60000
// Time to wait before showing manual termination options
// If set too low the user may be confused by buttons briefly flashing up on the screen during an otherwise normal logout process
-#define KSMSERVER_NOTIFICATION_MANUAL_OPTIONS_TIMEOUT 1000
+#define KSMSERVER_NOTIFICATION_MANUAL_OPTIONS_TIMEOUT 3000
void KSMServer::logout( int confirm, int sdtype, int sdmode )
{
@@ -687,11 +687,18 @@ void KSMServer::completeShutdownOrCheckpoint()
initialClientCount = clients.count();
if (shutdownNotifierIPDlg) {
TQString nextClientToKill;
+ TQDateTime currentDateTime = TQDateTime::currentDateTime();
+ TQDateTime oldestFoundDateTime = currentDateTime;
for( KSMClient* c = clients.first(); c; c = clients.next()) {
if( isWM( c ) || isCM( c ) || isNotifier( c ) ) {
continue;
}
- nextClientToKill = c->program();
+ if (c->program() != "") {
+ if (c->terminationRequestTimeStamp < oldestFoundDateTime) {
+ nextClientToKill = c->program();
+ oldestFoundDateTime = c->terminationRequestTimeStamp;
+ }
+ }
}
if (nextClientToKill == "") {
static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->setStatusMessage(i18n("Closing applications (%1/%2)...").arg(initialClientCount-clients.count()).arg(initialClientCount));
@@ -726,6 +733,7 @@ void KSMServer::startKilling()
if( isWM( c ) || isCM( c ) || isNotifier( c ) ) // kill the WM and CM as the last one in order to reduce flicker. Also wait to kill knotify to avoid logout delays
continue;
kdDebug( 1218 ) << "completeShutdown: client " << c->program() << "(" << c->clientId() << ")" << endl;
+ c->terminationRequestTimeStamp = TQDateTime::currentDateTime();
SmsDie( c->connection() );
}
@@ -745,12 +753,19 @@ void KSMServer::completeKilling()
if( state == Killing ) {
bool wait = false;
TQString nextClientToKill;
+ TQDateTime currentDateTime = TQDateTime::currentDateTime();
+ TQDateTime oldestFoundDateTime = currentDateTime;
for( KSMClient* c = clients.first(); c; c = clients.next()) {
if( isWM( c ) || isCM( c ) || isNotifier( c ) ) {
continue;
}
- nextClientToKill = c->program();
- wait = true; // still waiting for clients to go away
+ if (c->program() != "") {
+ if (c->terminationRequestTimeStamp < oldestFoundDateTime) {
+ nextClientToKill = c->program();
+ oldestFoundDateTime = c->terminationRequestTimeStamp;
+ }
+ wait = true; // still waiting for clients to go away
+ }
}
if( wait ) {
if (shutdownNotifierIPDlg) {
@@ -784,15 +799,18 @@ void KSMServer::killWM()
for ( KSMClient* c = clients.first(); c; c = clients.next() ) {
if( isNotifier( c )) {
iswm = true;
+ c->terminationRequestTimeStamp = TQDateTime::currentDateTime();
SmsDie( c->connection() );
}
if( isCM( c )) {
iswm = true;
+ c->terminationRequestTimeStamp = TQDateTime::currentDateTime();
SmsDie( c->connection() );
}
if( isWM( c )) {
iswm = true;
kdDebug( 1218 ) << "killWM: client " << c->program() << "(" << c->clientId() << ")" << endl;
+ c->terminationRequestTimeStamp = TQDateTime::currentDateTime();
SmsDie( c->connection() );
}
}