ObjFW
Loading...
Searching...
No Matches
ObjFW.h
1/*
2 * Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im>
3 *
4 * All rights reserved.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License version 3.0 only,
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * version 3.0 for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * version 3.0 along with this program. If not, see
17 * <https://www.gnu.org/licenses/>.
18 */
19
20#import "OFObject.h"
21#import "OFBlock.h"
22
23#import "OFString.h"
24#import "OFCharacterSet.h"
25
26#import "OFData.h"
27#import "OFArray.h"
28#import "OFSecureData.h"
29
30#import "OFList.h"
31#import "OFSortedList.h"
32
33#import "OFDictionary.h"
34#import "OFMapTable.h"
35
36#import "OFSet.h"
37#import "OFCountedSet.h"
38
39#import "OFValue.h"
40#import "OFPair.h"
41#import "OFTriple.h"
42
43#import "OFEnumerator.h"
44
45#import "OFNull.h"
46
47#import "OFMethodSignature.h"
48#import "OFInvocation.h"
49
50#import "OFNumber.h"
51#import "OFDate.h"
52#import "OFIRI.h"
53#import "OFIRIHandler.h"
54#import "OFUUID.h"
55#import "OFColor.h"
56
57#import "OFNotification.h"
58#import "OFNotificationCenter.h"
59
60#import "OFStream.h"
61#import "OFSeekableStream.h"
62#import "OFMemoryStream.h"
63#import "OFStdIOStream.h"
64#import "OFInflateStream.h"
65#import "OFInflate64Stream.h"
66#import "OFGZIPStream.h"
67#import "OFLHAArchive.h"
68#import "OFLHAArchiveEntry.h"
69#import "OFTarArchive.h"
70#import "OFTarArchiveEntry.h"
71#import "OFZIPArchive.h"
72#import "OFZIPArchiveEntry.h"
73#import "OFZooArchive.h"
74#import "OFZooArchiveEntry.h"
75#import "OFFileManager.h"
76#ifdef OF_HAVE_FILES
77# import "OFFile.h"
78#endif
79#import "OFINIFile.h"
80#import "OFINICategory.h"
81#import "OFSettings.h"
82#ifdef OF_HAVE_SOCKETS
83# import "OFStreamSocket.h"
84# import "OFDatagramSocket.h"
86# import "OFTCPSocket.h"
87# import "OFUDPSocket.h"
88# import "OFTLSStream.h"
89# import "OFKernelEventObserver.h"
90# import "OFDNSQuery.h"
91# import "OFDNSResourceRecord.h"
92# import "OFDNSResponse.h"
93# import "OFDNSResolver.h"
94# ifdef OF_HAVE_SCTP
95# import "OFSCTPSocket.h"
96# endif
97# ifdef OF_HAVE_UNIX_SOCKETS
98# import "OFUNIXDatagramSocket.h"
99# import "OFUNIXSequencedPacketSocket.h"
100# import "OFUNIXStreamSocket.h"
101# endif
102# ifdef OF_HAVE_IPX
103# import "OFIPXSocket.h"
104# import "OFSPXSocket.h"
105# import "OFSPXStreamSocket.h"
106# endif
107# ifdef OF_HAVE_APPLETALK
108# import "OFDDPSocket.h"
109# endif
110# import "OFHTTPClient.h"
111# import "OFHTTPCookie.h"
112# import "OFHTTPCookieManager.h"
113# import "OFHTTPRequest.h"
114# import "OFHTTPResponse.h"
115# import "OFHTTPServer.h"
116#endif
117
118#ifdef OF_HAVE_SUBPROCESSES
119# import "OFSubprocess.h"
120#endif
121
122#import "OFCryptographicHash.h"
123#import "OFMD5Hash.h"
124#import "OFRIPEMD160Hash.h"
125#import "OFSHA1Hash.h"
126#import "OFSHA224Hash.h"
127#import "OFSHA256Hash.h"
128#import "OFSHA384Hash.h"
129#import "OFSHA512Hash.h"
130
131#import "OFHMAC.h"
132
133#import "OFXMLAttribute.h"
134#import "OFXMLElement.h"
135#import "OFXMLAttribute.h"
136#import "OFXMLCharacters.h"
137#import "OFXMLCDATA.h"
138#import "OFXMLComment.h"
139#import "OFXMLProcessingInstruction.h"
140#import "OFXMLParser.h"
141#import "OFXMLElementBuilder.h"
142
143#import "OFMessagePackExtension.h"
144
145#import "OFApplication.h"
146#import "OFSystemInfo.h"
147#import "OFLocale.h"
148#import "OFOptionsParser.h"
149#import "OFTimer.h"
150#import "OFRunLoop.h"
151
152#import "OFMatrix4x4.h"
153
154#ifdef OF_WINDOWS
155# import "OFWindowsRegistryKey.h"
156#endif
157
158#import "OFAllocFailedException.h"
159#import "OFAlreadyOpenException.h"
160#import "OFException.h"
161#ifdef OF_HAVE_FILES
162# import "OFChangeCurrentDirectoryFailedException.h"
163#endif
164#import "OFChecksumMismatchException.h"
165#import "OFCopyItemFailedException.h"
166#import "OFCreateDirectoryFailedException.h"
167#import "OFCreateSymbolicLinkFailedException.h"
168#import "OFEnumerationMutationException.h"
169#ifdef OF_HAVE_FILES
170# import "OFGetCurrentDirectoryFailedException.h"
171#endif
172#import "OFGetItemAttributesFailedException.h"
173#import "OFGetOptionFailedException.h"
174#import "OFHashAlreadyCalculatedException.h"
175#import "OFHashNotCalculatedException.h"
176#import "OFInitializationFailedException.h"
177#import "OFInvalidArgumentException.h"
178#import "OFInvalidEncodingException.h"
179#import "OFInvalidFormatException.h"
180#import "OFInvalidJSONException.h"
181#import "OFInvalidServerResponseException.h"
182#import "OFLinkItemFailedException.h"
183#ifdef OF_HAVE_PLUGINS
184# import "OFLoadPluginFailedException.h"
185#endif
186#import "OFLockFailedException.h"
187#import "OFMalformedXMLException.h"
188#import "OFMoveItemFailedException.h"
189#import "OFNotImplementedException.h"
190#import "OFNotOpenException.h"
191#import "OFOpenItemFailedException.h"
192#import "OFOutOfMemoryException.h"
193#import "OFOutOfRangeException.h"
194#import "OFReadFailedException.h"
195#import "OFReadOrWriteFailedException.h"
196#import "OFRemoveItemFailedException.h"
197#import "OFSeekFailedException.h"
198#import "OFSetItemAttributesFailedException.h"
199#import "OFSetOptionFailedException.h"
200#import "OFStillLockedException.h"
201#import "OFTruncatedDataException.h"
202#import "OFUnboundNamespaceException.h"
203#import "OFUnboundPrefixException.h"
204#import "OFUndefinedKeyException.h"
205#import "OFUnknownXMLEntityException.h"
206#import "OFUnlockFailedException.h"
207#import "OFUnsupportedProtocolException.h"
208#import "OFUnsupportedVersionException.h"
209#import "OFWriteFailedException.h"
210#ifdef OF_HAVE_SOCKETS
211# import "OFAcceptSocketFailedException.h"
212# import "OFBindIPSocketFailedException.h"
213# import "OFBindSocketFailedException.h"
214# import "OFConnectIPSocketFailedException.h"
215# import "OFConnectSocketFailedException.h"
216# import "OFDNSQueryFailedException.h"
217# import "OFHTTPRequestFailedException.h"
218# import "OFListenOnSocketFailedException.h"
219# import "OFObserveKernelEventsFailedException.h"
220# import "OFResolveHostFailedException.h"
221# import "OFTLSHandshakeFailedException.h"
222# ifdef OF_HAVE_UNIX_SOCKETS
223# import "OFBindUNIXSocketFailedException.h"
224# import "OFConnectUNIXSocketFailedException.h"
225# endif
226# ifdef OF_HAVE_IPX
227# import "OFBindIPXSocketFailedException.h"
228# import "OFConnectSPXSocketFailedException.h"
229# endif
230# ifdef OF_HAVE_APPLETALK
231# import "OFBindDDPSocketFailedException.h"
232# endif
233#endif
234#ifdef OF_HAVE_THREADS
235# import "OFBroadcastConditionFailedException.h"
236# import "OFConditionStillWaitingException.h"
237# import "OFJoinThreadFailedException.h"
238# import "OFSignalConditionFailedException.h"
239# import "OFStartThreadFailedException.h"
240# import "OFThreadStillRunningException.h"
241# import "OFWaitForConditionFailedException.h"
242#endif
243#ifdef OF_HAVE_PLUGINS
244# import "OFPlugin.h"
245#endif
246#ifdef OF_WINDOWS
247# import "OFCreateWindowsRegistryKeyFailedException.h"
248# import "OFDeleteWindowsRegistryKeyFailedException.h"
249# import "OFDeleteWindowsRegistryValueFailedException.h"
250# import "OFGetWindowsRegistryValueFailedException.h"
251# import "OFOpenWindowsRegistryKeyFailedException.h"
252# import "OFSetWindowsRegistryValueFailedException.h"
253#endif
254
255#ifdef OF_HAVE_ATOMIC_OPS
256# import "OFAtomic.h"
257#endif
258#import "OFLocking.h"
259#import "OFOnce.h"
260#import "OFThread.h"
261#ifdef OF_HAVE_THREADS
262# import "OFCondition.h"
263# import "OFMutex.h"
264# import "OFPlainCondition.h"
265# import "OFPlainMutex.h"
266# import "OFPlainThread.h"
267# import "OFRecursiveMutex.h"
268# import "OFTLSKey.h"
269#endif
270
271#import "OFPBKDF2.h"
272#import "OFScrypt.h"