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 "OFEmbeddedIRIHandler.h"
81#import "OFINICategory.h"
82#import "OFSettings.h"
83#ifdef OF_HAVE_SOCKETS
84# import "OFStreamSocket.h"
85# import "OFDatagramSocket.h"
87# import "OFTCPSocket.h"
88# import "OFUDPSocket.h"
89# import "OFTLSStream.h"
90# import "OFKernelEventObserver.h"
91# import "OFDNSQuery.h"
92# import "OFDNSResourceRecord.h"
93# import "OFDNSResponse.h"
94# import "OFDNSResolver.h"
95# ifdef OF_HAVE_SCTP
96# import "OFSCTPSocket.h"
97# endif
98# ifdef OF_HAVE_UNIX_SOCKETS
99# import "OFUNIXDatagramSocket.h"
100# import "OFUNIXSequencedPacketSocket.h"
101# import "OFUNIXStreamSocket.h"
102# endif
103# ifdef OF_HAVE_IPX
104# import "OFIPXSocket.h"
105# import "OFSPXSocket.h"
106# import "OFSPXStreamSocket.h"
107# endif
108# ifdef OF_HAVE_APPLETALK
109# import "OFDDPSocket.h"
110# endif
111# import "OFHTTPClient.h"
112# import "OFHTTPCookie.h"
113# import "OFHTTPCookieManager.h"
114# import "OFHTTPRequest.h"
115# import "OFHTTPResponse.h"
116# import "OFHTTPServer.h"
117#endif
118
119#ifdef OF_HAVE_SUBPROCESSES
120# import "OFSubprocess.h"
121#endif
122
123#import "OFCryptographicHash.h"
124#import "OFMD5Hash.h"
125#import "OFRIPEMD160Hash.h"
126#import "OFSHA1Hash.h"
127#import "OFSHA224Hash.h"
128#import "OFSHA256Hash.h"
129#import "OFSHA384Hash.h"
130#import "OFSHA512Hash.h"
131
132#import "OFHMAC.h"
133
134#import "OFXMLAttribute.h"
135#import "OFXMLElement.h"
136#import "OFXMLAttribute.h"
137#import "OFXMLCharacters.h"
138#import "OFXMLCDATA.h"
139#import "OFXMLComment.h"
140#import "OFXMLProcessingInstruction.h"
141#import "OFXMLParser.h"
142#import "OFXMLElementBuilder.h"
143
144#import "OFMessagePackExtension.h"
145
146#import "OFApplication.h"
147#import "OFSystemInfo.h"
148#import "OFLocale.h"
149#import "OFOptionsParser.h"
150#import "OFTimer.h"
151#import "OFRunLoop.h"
152
153#import "OFMatrix4x4.h"
154
155#ifdef OF_WINDOWS
156# import "OFWindowsRegistryKey.h"
157#endif
158
159#import "OFAllocFailedException.h"
160#import "OFAlreadyOpenException.h"
161#import "OFException.h"
162#ifdef OF_HAVE_FILES
163# import "OFChangeCurrentDirectoryFailedException.h"
164#endif
165#import "OFChecksumMismatchException.h"
166#import "OFCopyItemFailedException.h"
167#import "OFCreateDirectoryFailedException.h"
168#import "OFCreateSymbolicLinkFailedException.h"
169#import "OFEnumerationMutationException.h"
170#ifdef OF_HAVE_FILES
171# import "OFGetCurrentDirectoryFailedException.h"
172#endif
173#import "OFGetItemAttributesFailedException.h"
174#import "OFGetOptionFailedException.h"
175#import "OFHashAlreadyCalculatedException.h"
176#import "OFHashNotCalculatedException.h"
177#import "OFInitializationFailedException.h"
178#import "OFInvalidArgumentException.h"
179#import "OFInvalidEncodingException.h"
180#import "OFInvalidFormatException.h"
181#import "OFInvalidJSONException.h"
182#import "OFInvalidServerResponseException.h"
183#import "OFLinkItemFailedException.h"
184#ifdef OF_HAVE_PLUGINS
185# import "OFLoadPluginFailedException.h"
186#endif
187#import "OFLockFailedException.h"
188#import "OFMalformedXMLException.h"
189#import "OFMoveItemFailedException.h"
190#import "OFNotImplementedException.h"
191#import "OFNotOpenException.h"
192#import "OFOpenItemFailedException.h"
193#import "OFOutOfMemoryException.h"
194#import "OFOutOfRangeException.h"
195#import "OFReadFailedException.h"
196#import "OFReadOrWriteFailedException.h"
197#import "OFRemoveItemFailedException.h"
198#import "OFSeekFailedException.h"
199#import "OFSetItemAttributesFailedException.h"
200#import "OFSetOptionFailedException.h"
201#import "OFStillLockedException.h"
202#import "OFTruncatedDataException.h"
203#import "OFUnboundNamespaceException.h"
204#import "OFUnboundPrefixException.h"
205#import "OFUndefinedKeyException.h"
206#import "OFUnknownXMLEntityException.h"
207#import "OFUnlockFailedException.h"
208#import "OFUnsupportedProtocolException.h"
209#import "OFUnsupportedVersionException.h"
210#import "OFWriteFailedException.h"
211#ifdef OF_HAVE_SOCKETS
212# import "OFAcceptSocketFailedException.h"
213# import "OFBindIPSocketFailedException.h"
214# import "OFBindSocketFailedException.h"
215# import "OFConnectIPSocketFailedException.h"
216# import "OFConnectSocketFailedException.h"
217# import "OFDNSQueryFailedException.h"
218# import "OFHTTPRequestFailedException.h"
219# import "OFListenOnSocketFailedException.h"
220# import "OFObserveKernelEventsFailedException.h"
221# import "OFResolveHostFailedException.h"
222# import "OFTLSHandshakeFailedException.h"
223# ifdef OF_HAVE_UNIX_SOCKETS
224# import "OFBindUNIXSocketFailedException.h"
225# import "OFConnectUNIXSocketFailedException.h"
226# endif
227# ifdef OF_HAVE_IPX
228# import "OFBindIPXSocketFailedException.h"
229# import "OFConnectSPXSocketFailedException.h"
230# endif
231# ifdef OF_HAVE_APPLETALK
232# import "OFBindDDPSocketFailedException.h"
233# endif
234#endif
235#ifdef OF_HAVE_THREADS
236# import "OFBroadcastConditionFailedException.h"
237# import "OFConditionStillWaitingException.h"
238# import "OFJoinThreadFailedException.h"
239# import "OFSignalConditionFailedException.h"
240# import "OFStartThreadFailedException.h"
241# import "OFThreadStillRunningException.h"
242# import "OFWaitForConditionFailedException.h"
243#endif
244#ifdef OF_HAVE_PLUGINS
245# import "OFPlugin.h"
246#endif
247#ifdef OF_WINDOWS
248# import "OFCreateWindowsRegistryKeyFailedException.h"
249# import "OFDeleteWindowsRegistryKeyFailedException.h"
250# import "OFDeleteWindowsRegistryValueFailedException.h"
251# import "OFGetWindowsRegistryValueFailedException.h"
252# import "OFOpenWindowsRegistryKeyFailedException.h"
253# import "OFSetWindowsRegistryValueFailedException.h"
254#endif
255
256#ifdef OF_HAVE_ATOMIC_OPS
257# import "OFAtomic.h"
258#endif
259#import "OFLocking.h"
260#import "OFOnce.h"
261#import "OFThread.h"
262#ifdef OF_HAVE_THREADS
263# import "OFCondition.h"
264# import "OFMutex.h"
265# import "OFPlainCondition.h"
266# import "OFPlainMutex.h"
267# import "OFPlainThread.h"
268# import "OFRecursiveMutex.h"
269# import "OFTLSKey.h"
270#endif
271
272#import "OFPBKDF2.h"
273#import "OFScrypt.h"