]>
git.saurik.com Git - apple/launchd.git/blob - launchd/src/launch.h
2 * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_APACHE_LICENSE_HEADER_START@
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 * @APPLE_APACHE_LICENSE_HEADER_END@
23 #include <mach/mach.h>
24 #include <sys/cdefs.h>
31 #define __ld_normal __attribute__((__nothrow__))
32 #define __ld_setter __attribute__((__nothrow__, __nonnull__))
33 #define __ld_getter __attribute__((__nothrow__, __nonnull__, __pure__, __warn_unused_result__))
34 #define __ld_iterator(x, y) __attribute__((__nonnull__(x, y)))
35 #define __ld_allocator __attribute__((__nothrow__, __malloc__, __nonnull__, __warn_unused_result__))
40 #define __ld_iterator(x, y)
41 #define __ld_allocator
45 #define LAUNCH_KEY_SUBMITJOB "SubmitJob"
46 #define LAUNCH_KEY_REMOVEJOB "RemoveJob"
47 #define LAUNCH_KEY_STARTJOB "StartJob"
48 #define LAUNCH_KEY_STOPJOB "StopJob"
49 #define LAUNCH_KEY_GETJOB "GetJob"
50 #define LAUNCH_KEY_GETJOBWITHHANDLES "GetJobWithHandles"
51 #define LAUNCH_KEY_GETJOBS "GetJobs"
52 #define LAUNCH_KEY_CHECKIN "CheckIn"
54 #define LAUNCH_JOBKEY_LABEL "Label"
55 #define LAUNCH_JOBKEY_DISABLED "Disabled"
56 #define LAUNCH_JOBKEY_USERNAME "UserName"
57 #define LAUNCH_JOBKEY_GROUPNAME "GroupName"
58 #define LAUNCH_JOBKEY_TIMEOUT "TimeOut"
59 #define LAUNCH_JOBKEY_INITGROUPS "InitGroups"
60 #define LAUNCH_JOBKEY_SOCKETS "Sockets"
61 #define LAUNCH_JOBKEY_MACHSERVICES "MachServices"
62 #define LAUNCH_JOBKEY_INETDCOMPATIBILITY "inetdCompatibility"
63 #define LAUNCH_JOBKEY_ENABLEGLOBBING "EnableGlobbing"
64 #define LAUNCH_JOBKEY_PROGRAMARGUMENTS "ProgramArguments"
65 #define LAUNCH_JOBKEY_PROGRAM "Program"
66 #define LAUNCH_JOBKEY_ONDEMAND "OnDemand"
67 #define LAUNCH_JOBKEY_KEEPALIVE "KeepAlive"
68 #define LAUNCH_JOBKEY_LIMITLOADTOHOSTS "LimitLoadToHosts"
69 #define LAUNCH_JOBKEY_LIMITLOADFROMHOSTS "LimitLoadFromHosts"
70 #define LAUNCH_JOBKEY_LIMITLOADTOSESSIONTYPE "LimitLoadToSessionType"
71 #define LAUNCH_JOBKEY_RUNATLOAD "RunAtLoad"
72 #define LAUNCH_JOBKEY_ROOTDIRECTORY "RootDirectory"
73 #define LAUNCH_JOBKEY_WORKINGDIRECTORY "WorkingDirectory"
74 #define LAUNCH_JOBKEY_SERVICEDESCRIPTION "ServiceDescription"
75 #define LAUNCH_JOBKEY_ENVIRONMENTVARIABLES "EnvironmentVariables"
76 #define LAUNCH_JOBKEY_USERENVIRONMENTVARIABLES "UserEnvironmentVariables"
77 #define LAUNCH_JOBKEY_FORCEPOWERPC "ForcePowerPC"
78 #define LAUNCH_JOBKEY_UMASK "Umask"
79 #define LAUNCH_JOBKEY_NICE "Nice"
80 #define LAUNCH_JOBKEY_LOWPRIORITYIO "LowPriorityIO"
81 #define LAUNCH_JOBKEY_SESSIONCREATE "SessionCreate"
82 #define LAUNCH_JOBKEY_SOFTRESOURCELIMITS "SoftResourceLimits"
83 #define LAUNCH_JOBKEY_HARDRESOURCELIMITS "HardResourceLimits"
84 #define LAUNCH_JOBKEY_STANDARDOUTPATH "StandardOutPath"
85 #define LAUNCH_JOBKEY_STANDARDERRORPATH "StandardErrorPath"
86 #define LAUNCH_JOBKEY_DEBUG "Debug"
87 #define LAUNCH_JOBKEY_WAITFORDEBUGGER "WaitForDebugger"
88 #define LAUNCH_JOBKEY_QUEUEDIRECTORIES "QueueDirectories"
89 #define LAUNCH_JOBKEY_WATCHPATHS "WatchPaths"
90 #define LAUNCH_JOBKEY_STARTINTERVAL "StartInterval"
91 #define LAUNCH_JOBKEY_STARTCALENDARINTERVAL "StartCalendarInterval"
92 #define LAUNCH_JOBKEY_BONJOURFDS "BonjourFDs"
93 #define LAUNCH_JOBKEY_LASTEXITSTATUS "LastExitStatus"
94 #define LAUNCH_JOBKEY_PID "PID"
95 #define LAUNCH_JOBKEY_SUBJOBS "SubJobs"
97 #define LAUNCH_JOBINETDCOMPATIBILITY_WAIT "Wait"
99 #define LAUNCH_JOBKEY_MACH_RESETATCLOSE "ResetAtClose"
100 #define LAUNCH_JOBKEY_MACH_HIDEUNTILCHECKIN "HideUntilCheckIn"
102 #define LAUNCH_JOBKEY_KEEPALIVE_SUCCESSFULEXIT "SuccessfulExit"
103 #define LAUNCH_JOBKEY_KEEPALIVE_NETWORKSTATE "NetworkState"
104 #define LAUNCH_JOBKEY_KEEPALIVE_PATHSTATE "PathState"
106 #define LAUNCH_JOBKEY_CAL_MINUTE "Minute"
107 #define LAUNCH_JOBKEY_CAL_HOUR "Hour"
108 #define LAUNCH_JOBKEY_CAL_DAY "Day"
109 #define LAUNCH_JOBKEY_CAL_WEEKDAY "Weekday"
110 #define LAUNCH_JOBKEY_CAL_MONTH "Month"
112 #define LAUNCH_JOBKEY_RESOURCELIMIT_CORE "Core"
113 #define LAUNCH_JOBKEY_RESOURCELIMIT_CPU "CPU"
114 #define LAUNCH_JOBKEY_RESOURCELIMIT_DATA "Data"
115 #define LAUNCH_JOBKEY_RESOURCELIMIT_FSIZE "FileSize"
116 #define LAUNCH_JOBKEY_RESOURCELIMIT_MEMLOCK "MemoryLock"
117 #define LAUNCH_JOBKEY_RESOURCELIMIT_NOFILE "NumberOfFiles"
118 #define LAUNCH_JOBKEY_RESOURCELIMIT_NPROC "NumberOfProcesses"
119 #define LAUNCH_JOBKEY_RESOURCELIMIT_RSS "ResidentSetSize"
120 #define LAUNCH_JOBKEY_RESOURCELIMIT_STACK "Stack"
122 #define LAUNCH_JOBSOCKETKEY_TYPE "SockType"
123 #define LAUNCH_JOBSOCKETKEY_PASSIVE "SockPassive"
124 #define LAUNCH_JOBSOCKETKEY_BONJOUR "Bonjour"
125 #define LAUNCH_JOBSOCKETKEY_SECUREWITHKEY "SecureSocketWithKey"
126 #define LAUNCH_JOBSOCKETKEY_PATHNAME "SockPathName"
127 #define LAUNCH_JOBSOCKETKEY_PATHMODE "SockPathMode"
128 #define LAUNCH_JOBSOCKETKEY_NODENAME "SockNodeName"
129 #define LAUNCH_JOBSOCKETKEY_SERVICENAME "SockServiceName"
130 #define LAUNCH_JOBSOCKETKEY_FAMILY "SockFamily"
131 #define LAUNCH_JOBSOCKETKEY_PROTOCOL "SockProtocol"
132 #define LAUNCH_JOBSOCKETKEY_MULTICASTGROUP "MulticastGroup"
134 typedef struct _launch_data
*launch_data_t
;
137 LAUNCH_DATA_DICTIONARY
= 1,
146 LAUNCH_DATA_MACHPORT
,
147 } launch_data_type_t
;
149 launch_data_t
launch_data_alloc(launch_data_type_t
) __ld_allocator
;
150 launch_data_t
launch_data_copy(launch_data_t
) __ld_allocator
;
151 launch_data_type_t
launch_data_get_type(const launch_data_t
) __ld_getter
;
152 void launch_data_free(launch_data_t
) __ld_setter
;
154 /* Generic Dictionaries */
155 /* the value should not be changed while iterating */
156 bool launch_data_dict_insert(launch_data_t
, const launch_data_t
, const char *) __ld_setter
;
157 launch_data_t
launch_data_dict_lookup(const launch_data_t
, const char *) __ld_getter
;
158 bool launch_data_dict_remove(launch_data_t
, const char *) __ld_setter
;
159 void launch_data_dict_iterate(const launch_data_t
, void (*)(const launch_data_t
, const char *, void *), void *) __ld_iterator(1, 2);
160 size_t launch_data_dict_get_count(const launch_data_t
) __ld_getter
;
163 bool launch_data_array_set_index(launch_data_t
, const launch_data_t
, size_t) __ld_setter
;
164 launch_data_t
launch_data_array_get_index(const launch_data_t
, size_t) __ld_getter
;
165 size_t launch_data_array_get_count(const launch_data_t
) __ld_getter
;
167 launch_data_t
launch_data_new_fd(int) __ld_allocator
;
168 launch_data_t
launch_data_new_machport(mach_port_t
) __ld_allocator
;
169 launch_data_t
launch_data_new_integer(long long) __ld_allocator
;
170 launch_data_t
launch_data_new_bool(bool) __ld_allocator
;
171 launch_data_t
launch_data_new_real(double) __ld_allocator
;
172 launch_data_t
launch_data_new_string(const char *) __ld_allocator
;
173 launch_data_t
launch_data_new_opaque(const void *, size_t) __ld_allocator
;
175 bool launch_data_set_fd(launch_data_t
, int) __ld_setter
;
176 bool launch_data_set_machport(launch_data_t
, mach_port_t
) __ld_setter
;
177 bool launch_data_set_integer(launch_data_t
, long long) __ld_setter
;
178 bool launch_data_set_bool(launch_data_t
, bool) __ld_setter
;
179 bool launch_data_set_real(launch_data_t
, double) __ld_setter
;
180 bool launch_data_set_string(launch_data_t
, const char *) __ld_setter
;
181 bool launch_data_set_opaque(launch_data_t
, const void *, size_t) __ld_setter
;
183 int launch_data_get_fd(const launch_data_t
) __ld_getter
;
184 mach_port_t
launch_data_get_machport(const launch_data_t
) __ld_getter
;
185 long long launch_data_get_integer(const launch_data_t
) __ld_getter
;
186 bool launch_data_get_bool(const launch_data_t
) __ld_getter
;
187 double launch_data_get_real(const launch_data_t
) __ld_getter
;
188 const char * launch_data_get_string(const launch_data_t
) __ld_getter
;
189 void * launch_data_get_opaque(const launch_data_t
) __ld_getter
;
190 size_t launch_data_get_opaque_size(const launch_data_t
) __ld_getter
;
191 int launch_data_get_errno(const launch_data_t
) __ld_getter
;
196 * Use this to get the FD if you're doing asynchronous I/O with select(),
197 * poll() or kevent().
199 int launch_get_fd(void) __ld_normal
;
203 * Use this API to send and receive messages.
204 * Calling launch_msg() with no message to send is a valid way to get
205 * asynchronously received messages.
207 * If a message was to be sent, it returns NULL and errno on failure.
209 * If no messages were to be sent, it returns NULL and errno is set to zero if
210 * no more asynchronous messages are available.
212 launch_data_t
launch_msg(const launch_data_t
) __ld_normal
;