-
Notifications
You must be signed in to change notification settings - Fork 1
/
ApplicationManager.h
100 lines (81 loc) · 3.31 KB
/
ApplicationManager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
ApplicationManager.h
ApplicationManager class allows to monitor usual user applications (based
on AppKit) to know which ones are running and be able to terminate them
properly on request (log out, power off etc.).
Copyright (C) 2006 Saso Kiselkov
Author: Saso Kiselkov
Quentin Mathe <[email protected]>
Date: March 2006
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
/* Server part of the session protocol */
@protocol SCSession
- (oneway void) replyToTerminate: (int)reply info: (bycopy NSDictionary *)info;
@end
/* Client part of the session protocol */
@interface NSApplication (Etoile)
- (int) shouldTerminateOnOperation: (NSString *)op;
- (oneway void) terminateOnOperation: (NSString *)op inSession: (id)session;
@end
@interface ApplicationManager : NSObject <SCSession>
{
/**
* This dictionary holds information about all launched applications.
* Keys in it are application names, and values are dictionaries
* describing various information about the launched application.
*
* The value dictionary contains the following keys:
*
* {
* @"NSApplicationName" = "<app-name>";
* @"NSApplicationPath" = "<app-path>";
* @"NSApplicationProcessIdentifier" = (NSNumber *) PID;
* }
*
* When an application is starting up, it's information dictionary
* does not contain the @"NSApplicationProcessIdentifier" - that will
* be added later on when the application is running.
*/
NSMutableDictionary *launchedApplications;
/**
* This timer fires every second, when we check whether our registered
* apps are still alive. The workspace server takes note of apps shutting
* down in two ways:
*
* - receiving an NSWorkspaceDidTerminateApplicationNotification (if the
* app terminated gracefully)
* - or simply seing it's PID disappear from the system (in case it crashed)
*
* in the latter case, this object posts an
* NSWorkspaceDidTerminateApplicationNotification to make up for the app
* which died and could do it.
*/
NSTimer *autocheckTimer;
/* Log out related ivars */
NSMutableDictionary *waitedApplications;
NSMutableArray *terminateLaterTimers;
NSLock *replyLock;
BOOL logOut; /* Flag to signal we are carrying out the log out procedure */
}
+ (id) sharedInstance;
- (NSArray *) launchedApplications;
- (NSArray *) userApplications;
- (void) noteApplicationLaunched: (NSNotification *)notif;
- (void) noteApplicationTerminated: (NSNotification *)notif;
- (void) checkLiveApplications;
- (void) terminateAllApplicationsOnOperation: (NSString *)operation;
+ (BOOL) setUpServerInstance: (id)instance;
@end