]>
Commit | Line | Data |
---|---|---|
f3df4c03 A |
1 | /* |
2 | * Copyright (c) 2012 Apple Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
12 | * | |
13 | * The Original Code and all software distributed under the License are | |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
20 | * | |
21 | * @APPLE_LICENSE_HEADER_END@ | |
22 | */ | |
23 | ||
24 | #ifndef __ASL_CLIENT_H__ | |
25 | #define __ASL_CLIENT_H__ | |
26 | ||
27 | #include <stdint.h> | |
28 | #include <asl.h> | |
29 | #include <asl_file.h> | |
30 | #include <asl_store.h> | |
31 | #include <asl_msg.h> | |
32 | #include <asl_msg_list.h> | |
33 | #include <Availability.h> | |
34 | #include <asl_object.h> | |
35 | ||
36 | #define CLIENT_FLAG_WRITE_SYS 0x00000001 | |
37 | #define CLIENT_FLAG_WRITE_STORE 0x00000002 | |
38 | #define CLIENT_FLAG_WRITE_FILE 0x00000004 | |
39 | #define CLIENT_FLAG_READ_SYS 0x00000100 | |
40 | #define CLIENT_FLAG_READ_STORE 0x00000200 | |
41 | #define CLIENT_FLAG_READ_FILE 0x00000400 | |
42 | ||
43 | typedef struct | |
44 | { | |
45 | int fd; | |
46 | uint32_t encoding; | |
47 | uint32_t filter; | |
48 | char *mfmt; | |
49 | char *tfmt; | |
50 | } asl_out_file_t; | |
51 | ||
52 | typedef struct asl_client_s | |
53 | { | |
54 | uint32_t asl_type; //ASL OBJECT HEADER | |
55 | int32_t refcount; //ASL OBJECT HEADER | |
56 | uint32_t flags; | |
57 | uint32_t options; | |
58 | pid_t pid; | |
59 | uid_t uid; | |
60 | gid_t gid; | |
61 | asl_msg_t *kvdict; | |
62 | uint32_t filter; | |
63 | int notify_token; | |
64 | int notify_master_token; | |
65 | uint32_t out_count; | |
66 | asl_out_file_t *out_list; | |
67 | asl_file_t *aslfile; | |
68 | uint64_t aslfileid; | |
69 | asl_store_t *store; | |
70 | uint32_t reserved1; | |
71 | void *reserved2; | |
72 | } asl_client_t; | |
73 | ||
74 | __BEGIN_DECLS | |
75 | ||
76 | const asl_jump_table_t *asl_client_jump_table(void); | |
77 | ||
af7d442c A |
78 | asl_client_t *asl_client_open(const char *ident, const char *facility, uint32_t opts) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); |
79 | asl_client_t *asl_client_open_from_file(int descriptor, const char *ident, const char *facility) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
80 | asl_client_t *asl_client_retain(asl_client_t *client) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
81 | void asl_client_release(asl_client_t *client) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
f3df4c03 | 82 | |
af7d442c A |
83 | int asl_client_set_filter(asl_client_t *client, int filter) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); |
84 | ASL_STATUS asl_client_add_output_file(asl_client_t *client, int descriptor, const char *mfmt, const char *tfmt, int filter, int text_encoding) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
85 | int asl_client_set_output_file_filter(asl_client_t *client, int fd, int filter) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
86 | ASL_STATUS asl_client_remove_output_file(asl_client_t *client, int descriptor) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
f3df4c03 | 87 | |
af7d442c | 88 | int asl_client_log_descriptor(asl_client_t *client, asl_msg_t *msg, int level, int descriptor, uint32_t fd_type) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); |
f3df4c03 | 89 | |
af7d442c | 90 | asl_msg_t *asl_client_kvdict(asl_client_t *client) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); |
f3df4c03 | 91 | |
af7d442c A |
92 | int asl_client_log(asl_client_t *client, asl_msg_t *msg, int level, const char *format, ...) __printflike(4, 5) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); |
93 | int asl_client_vlog(asl_client_t *client, asl_msg_t *msg, int level, const char *format, va_list ap) __printflike(4, 0) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
94 | ASL_STATUS asl_client_send(asl_client_t *client, asl_msg_t *msg) __not_tail_called __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
f3df4c03 | 95 | |
af7d442c A |
96 | asl_msg_list_t *asl_client_search(asl_client_t *client, asl_msg_t *query) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); |
97 | asl_msg_list_t *asl_client_match(asl_client_t *client, asl_msg_list_t *querylist, size_t *last, size_t start, size_t count, uint32_t duration, int32_t direction) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.10,10.12), ios(7.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
f3df4c03 | 98 | |
af7d442c A |
99 | uint32_t asl_client_set_control(asl_client_t *client, uint32_t filter) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.11,10.12), ios(9.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); |
100 | uint32_t asl_client_get_control(asl_client_t *client) __API_DEPRECATED("os_log(3) has replaced asl(3)", macosx(10.11,10.12), ios(9.0,10.0), watchos(2.0,3.0), tvos(9.0,10.0)); | |
5222c21d | 101 | |
f3df4c03 A |
102 | __END_DECLS |
103 | ||
104 | #endif /* __ASL_CLIENT_H__ */ |