2 * Copyright (c) 2000-2016 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* IOData.h created by rsulack on Wed 17-Sep-1997 */
29 /* IOData.h converted to C++ by gvdl on Fri 1998-10-30 */
34 #include <libkern/c++/OSObject.h>
42 * This header declares the OSData container class.
50 * OSData wraps an array of bytes in a C++ object
51 * for use in Libkern collections.
54 * OSData represents an array of bytes as a Libkern C++ object.
55 * OSData objects are mutable:
56 * You can add bytes to them and
57 * overwrite portions of the byte array.
59 * <b>Use Restrictions</b>
61 * With very few exceptions in the I/O Kit, all Libkern-based C++
62 * classes, functions, and macros are <b>unsafe</b>
63 * to use in a primary interrupt context.
64 * Consult the I/O Kit documentation related to primary interrupts
65 * for more information.
67 * OSData provides no concurrency protection;
68 * it's up to the usage context to provide any protection necessary.
69 * Some portions of the I/O Kit, such as
70 * @link //apple_ref/doc/class/IORegistryEntry IORegistryEntry@/link,
71 * handle synchronization via defined member functions for setting
74 class OSData
: public OSObject
76 friend class OSSerialize
;
78 OSDeclareDefaultStructors(OSData
)
80 #if APPLE_KEXT_ALIGN_CONTAINERS
84 unsigned int capacity
;
85 unsigned int capacityIncrement
;
88 #else /* APPLE_KEXT_ALIGN_CONTAINERS */
93 unsigned int capacity
;
94 unsigned int capacityIncrement
;
96 #endif /* APPLE_KEXT_ALIGN_CONTAINERS */
98 #ifdef XNU_KERNEL_PRIVATE
99 /* Available within xnu source only */
101 typedef void (*DeallocFunction
)(void * ptr
, unsigned int length
);
105 DeallocFunction deallocFunction
;
106 bool disableSerialization
;
108 #else /* XNU_KERNEL_PRIVATE */
110 typedef void (*DeallocFunction
)(void * ptr
, unsigned int length
);
112 struct ExpansionData
;
113 #endif /* XNU_KERNEL_PRIVATE */
115 /* Reserved for future use. (Internal use only) */
116 ExpansionData
* reserved
;
121 * @function withCapacity
124 * Creates and initializes an empty instance of OSData.
126 * @param capacity The initial capacity of the OSData object in bytes.
129 * An instance of OSData with a reference count of 1;
130 * <code>NULL</code> on failure.
133 * <code>capacity</code> may be zero.
134 * The OSData object will allocate a buffer internally
135 * when necessary, and will grow as needed to accommodate more bytes
136 * (<i>unlike</i> @link //apple_ref/doc/uid/20001498 CFMutableData@/link,
137 * for which a nonzero initial capacity is a hard limit).
139 static OSData
* withCapacity(unsigned int capacity
);
143 * @function withBytes
146 * Creates and initializes an instance of OSData
147 * with a copy of the provided data buffer.
149 * @param bytes The buffer of data to copy.
150 * @param numBytes The length of <code>bytes</code>.
153 * An instance of OSData containing a copy of the provided byte array,
154 * with a reference count of 1;
155 * <code>NULL</code> on failure.
158 * The new OSData object will grow as needed to accommodate more bytes
159 * (<i>unlike</i> @link //apple_ref/doc/uid/20001498 CFMutableData@/link,
160 * for which a nonzero initial capacity is a hard limit).
162 static OSData
* withBytes(
164 unsigned int numBytes
);
168 * @function withBytesNoCopy
171 * Creates and initializes an instance of OSData
172 * that shares the provided data buffer.
174 * @param bytes The buffer of data to represent.
175 * @param numBytes The length of <code>bytes</code>.
178 * A instance of OSData that shares the provided byte array,
179 * with a reference count of 1;
180 * <code>NULL</code> on failure.
183 * An OSData object created with this function
184 * does not claim ownership
185 * of the data buffer, but shares it with the caller.
186 * When the caller determines that the OSData object has actually been freed,
187 * it can safely dispose of the data buffer.
188 * Conversely, if it frees the shared data buffer,
189 * it must not attempt to use the OSData object and should release it.
191 * An OSData object created with shared external data cannot append bytes,
192 * but you can get the byte pointer and
193 * modify bytes within the shared buffer.
195 static OSData
* withBytesNoCopy(
197 unsigned int numBytes
);
204 * Creates and initializes an instance of OSData
205 * with contents copied from another OSData object.
207 * @param inData An OSData object that provides the initial data.
210 * An instance of OSData containing a copy of the data in <code>inData</code>,
211 * with a reference count of 1;
212 * <code>NULL</code> on failure.
215 * The new OSData object will grow as needed to accommodate more bytes
216 * (<i>unlike</i> @link //apple_ref/doc/uid/20001498 CFMutableData@/link,
217 * for which a nonzero initial capacity is a hard limit).
219 static OSData
* withData(const OSData
* inData
);
226 * Creates and initializes an instance of OSData
227 * with contents copied from a range within another OSData object.
229 * @param inData An OSData object that provides the initial data.
230 * @param start The starting index from which bytes will be copied.
231 * @param numBytes The number of bytes to be copied from <code>start</code>.
234 * An instance of OSData containing a copy
235 * of the specified data range from <code>inData</code>,
236 * with a reference count of 1;
237 * <code>NULL</code> on failure.
240 * The new OSData object will grow as needed to accommodate more bytes
241 * (<i>unlike</i> @link //apple_ref/doc/uid/20001498 CFMutableData@/link,
242 * for which a nonzero initial capacity is a hard limit).
244 static OSData
* withData(
245 const OSData
* inData
,
247 unsigned int numBytes
);
251 * @function initWithCapacity
254 * Initializes an instance of OSData.
256 * @param capacity The initial capacity of the OSData object in bytes.
259 * <code>true</code> on success, <code>false</code> on failure.
262 * Not for general use. Use the static instance creation method
264 * //apple_ref/cpp/clm/OSData/withCapacity/staticOSData*\/(unsignedint)
265 * withCapacity@/link</code> instead.
267 * <code>capacity</code> may be zero.
268 * The OSData object will allocate a buffer internally
269 * when necessary, and will grow as needed to accommodate more bytes
270 * (<i>unlike</i> @link //apple_ref/doc/uid/20001498 CFMutableData@/link,
271 * for which a nonzero initial capacity is a hard limit).
273 virtual bool initWithCapacity(unsigned int capacity
);
277 * @function initWithBytes
280 * Initializes an instance of OSData
281 * with a copy of the provided data buffer.
283 * @param bytes The buffer of data to copy.
284 * @param numBytes The length of <code>bytes</code>.
287 * <code>true</code> on success, <code>false</code> on failure.
290 * Not for general use. Use the static instance creation method
291 * <code>@link withBytes withBytes@/link</code> instead.
293 * The new OSData object will grow as needed to accommodate more bytes
294 * (<i>unlike</i> @link //apple_ref/doc/uid/20001498 CFMutableData@/link,
295 * for which a nonzero initial capacity is a hard limit).
297 virtual bool initWithBytes(
299 unsigned int numBytes
);
303 * @function initWithBytesNoCopy
306 * Initializes an instance of OSData
307 * to share the provided data buffer.
309 * @param bytes The buffer of data to represent.
310 * @param numBytes The length of <code>bytes</code>.
313 * <code>true</code> on success, <code>false</code> on failure.
316 * Not for general use. Use the static instance creation method
317 * <code>@link withBytesNoCopy withBytesNoCopy@/link</code> instead.
319 * An OSData object initialized with this function
320 * does not claim ownership
321 * of the data buffer, but merely shares it with the caller.
323 * An OSData object created with shared external data cannot append bytes,
324 * but you can get the byte pointer and
325 * modify bytes within the shared buffer.
327 virtual bool initWithBytesNoCopy(
329 unsigned int numBytes
);
333 * @function initWithData
336 * Creates and initializes an instance of OSData
337 * with contents copied from another OSData object.
339 * @param inData An OSData object that provides the initial data.
342 * <code>true</code> on success, <code>false</code> on failure.
345 * Not for general use. Use the static instance creation method
347 * //apple_ref/cpp/clm/OSData/withData/staticOSData*\/(constOSData*)
348 * withData(OSData *)@/link</code>
351 * The new OSData object will grow as needed to accommodate more bytes
352 * (<i>unlike</i> @link //apple_ref/doc/uid/20001498 CFMutableData@/link,
353 * for which a nonzero initial capacity is a hard limit).
355 virtual bool initWithData(const OSData
* inData
);
359 * @function initWithData
362 * Initializes an instance of OSData
363 * with contents copied from a range within another OSData object.
365 * @param inData An OSData object that provides the initial data.
366 * @param start The starting index from which bytes will be copied.
367 * @param numBytes The number of bytes to be copied from <code>start</code>.
370 * Returns <code>true</code> on success, <code>false</code> on failure.
373 * Not for general use. Use the static instance creation method
375 * //apple_ref/cpp/clm/OSData/withData/staticOSData*\/(constOSData*,unsignedint,unsignedint)
376 * withData(OSData *, unsigned int, unsigned int)@/link</code>
379 * The new OSData object will grow as needed to accommodate more bytes
380 * (<i>unlike</i> @link //apple_ref/doc/uid/20001498 CFMutableData@/link,
381 * for which a nonzero initial capacity is a hard limit).
383 virtual bool initWithData(
384 const OSData
* inData
,
386 unsigned int numBytes
);
393 * Deallocates or releases any resources
394 * used by the OSDictionary instance.
397 * This function should not be called directly;
400 * //apple_ref/cpp/instm/OSObject/release/virtualvoid/()
401 * release@/link</code>
404 virtual void free() APPLE_KEXT_OVERRIDE
;
408 * @function getLength
411 * Returns the number of bytes in or referenced by the OSData object.
414 * The number of bytes in or referenced by the OSData object.
416 virtual unsigned int getLength() const;
420 * @function getCapacity
423 * Returns the total number of bytes the OSData can store without reallocating.
426 * The total number bytes the OSData can store without reallocating.
429 * OSData objects grow when full to accommodate additional bytes.
432 * //apple_ref/cpp/instm/OSData/getCapacityIncrement/virtualunsignedint/()
433 * getCapacityIncrement@/link</code>
436 * //apple_ref/cpp/instm/OSData/ensureCapacity/virtualunsignedint/(unsignedint)
437 * ensureCapacity@/link</code>.
439 * OSData objects created or initialized to use a shared buffer
440 * do not make use of this attribute, and return -1 from this function.
442 virtual unsigned int getCapacity() const;
446 * @function getCapacityIncrement
449 * Returns the storage increment of the OSData object.
452 * The storage increment of the OSData object.
455 * An OSData object allocates storage for bytes in multiples
456 * of the capacity increment.
458 * OSData objects created or initialized to use a shared buffer
459 * do not make use of this attribute.
461 virtual unsigned int getCapacityIncrement() const;
465 * @function setCapacityIncrement
468 * Sets the storage increment of the array.
471 * The original storage increment of the array.
474 * An OSArray allocates storage for objects in multiples
475 * of the capacity increment.
477 * OSData objects created or initialized to use a shared buffer
478 * do not make use of this attribute.
480 virtual unsigned int setCapacityIncrement(unsigned increment
);
483 // xx-review: does not check for capacity == EXTERNAL
486 * @function ensureCapacity
489 * Ensures the array has enough space
490 * to store the requested number of bytes.
492 * @param newCapacity The total number of bytes the OSData object
493 * should be able to store.
496 * Returns the new capacity of the OSData object,
497 * which may be different from the number requested
498 * (if smaller, reallocation of storage failed).
501 * This function immediately resizes the OSData's buffer, if necessary,
502 * to accommodate at least <code>newCapacity</code> bytes.
503 * If <code>newCapacity</code> is not greater than the current capacity,
504 * or if an allocation error occurs, the original capacity is returned.
506 * There is no way to reduce the capacity of an OSData.
508 * An OSData object created "NoCopy" does not allow resizing.
510 virtual unsigned int ensureCapacity(unsigned int newCapacity
);
514 * @function appendBytes
517 * Appends a buffer of bytes to the OSData object's internal data buffer.
519 * @param bytes A pointer to the data to append.
520 * If <code>bytes</code> is <code>NULL</code>
521 * then a zero-filled buffer of length <code>numBytes</code>
523 * @param numBytes The number of bytes from <code>bytes</code> to append.
526 * <code>true</code> if the new data was successfully added,
527 * <code>false</code> on failure.
530 * This function immediately resizes the OSData's buffer, if necessary,
531 * to accommodate the new total size.
533 * An OSData object created "NoCopy" does not allow bytes
536 virtual bool appendBytes(
538 unsigned int numBytes
);
542 * @function appendBytes
545 * Appends the data contained in another OSData object.
547 * @param aDataObj The OSData object whose contents will be appended.
550 * <code>true</code> if the new data was successfully added,
551 * <code>false</code> on failure.
554 * This function immediately resizes the OSData's buffer, if necessary,
555 * to accommodate the new total size.
557 * An OSData object created "NoCopy" does not allow bytes
560 virtual bool appendBytes(const OSData
* aDataObj
);
564 * @function getBytesNoCopy
567 * Returns a pointer to the OSData object's internal data buffer.
570 * A pointer to the OSData object's internal data buffer.
573 * You can modify the existing contents of an OSData object
575 * It works with OSData objects that have their own data buffers
576 * as well as with OSData objects that have shared buffers.
578 * If you append bytes or characters to an OSData object,
579 * it may have to reallocate its internal storage,
580 * rendering invalid an extrated pointer to that storage.
582 virtual const void * getBytesNoCopy() const;
586 * @function getBytesNoCopy
589 * Returns a pointer into the OSData object's internal data buffer
590 * with a given offset and length.
592 * @param start The offset from the base of the internal data buffer.
593 * @param numBytes The length of the window.
596 * A pointer to the bytes in the specified range
597 * within the OSData object,
598 * or 0 if that range does not lie completely
599 * within the object's buffer.
602 * You can modify the existing contents of an OSData object
604 * It works with OSData objects that have their own data buffers
605 * as well as with OSData objects that have shared buffers.
607 * If you append bytes or characters to an OSData object,
608 * it may have to reallocate its internal storage,
609 * rendering invalid an extrated pointer to that storage.
611 virtual const void * getBytesNoCopy(
613 unsigned int numBytes
) const;
617 * @function isEqualTo
620 * Tests the equality of two OSData objects.
622 * @param aDataObj The OSData object being compared against the receiver.
625 * <code>true</code> if the two OSData objects are equivalent,
626 * <code>false</code> otherwise.
629 * Two OSData objects are considered equal
630 * if they have same length and if their
631 * byte buffers hold the same contents.
633 virtual bool isEqualTo(const OSData
* aDataObj
) const;
637 * @function isEqualTo
640 * Tests the equality of an OSData object's contents
641 * to a C array of bytes.
643 * @param bytes A pointer to the bytes to compare.
644 * @param numBytes The number of bytes to compare.
647 * <code>true</code> if the data buffers are equal
648 * over the given length,
649 * <code>false</code> otherwise.
651 virtual bool isEqualTo(
653 unsigned int numBytes
) const;
657 * @function isEqualTo
660 * Tests the equality of an OSData object to an arbitrary object.
662 * @param anObject The object to be compared against the receiver.
665 * <code>true</code> if the two objects are equivalent,
666 * <code>false</code> otherwise.
669 * An OSData is considered equal to another object
670 * if that object is derived from OSData
671 * and contains the equivalent bytes of the same length.
673 virtual bool isEqualTo(const OSMetaClassBase
* anObject
) const APPLE_KEXT_OVERRIDE
;
677 * @function isEqualTo
680 * Tests the equality of an OSData object to an OSString.
682 * @param aString The string object to be compared against the receiver.
685 * <code>true</code> if the two objects are equivalent,
686 * <code>false</code> otherwise.
689 * This function compares the bytes of the OSData object
690 * against those of the OSString,
691 * accounting for the possibility that an OSData
692 * might explicitly include a nul
693 * character as part of its total length.
694 * Thus, for example, an OSData object containing
695 * either the bytes <'u', 's', 'b', '\0'>
697 * will compare as equal to the OSString containing "usb".
699 virtual bool isEqualTo(const OSString
* aString
) const;
703 * @function serialize
706 * Archives the receiver into the provided
707 * @link //apple_ref/doc/class/IORegistryEntry OSSerialize@/link object.
709 * @param serializer The OSSerialize object.
712 * <code>true</code> if serialization succeeds, <code>false</code> if not.
714 virtual bool serialize(OSSerialize
* serializer
) const APPLE_KEXT_OVERRIDE
;
718 * @function appendByte
721 * Appends a single byte value
722 * to the OSData object's internal data buffer
723 * a specified number of times.
725 * @param byte The byte value to append.
726 * @param numBytes The number of copies of <code>byte</code> to append.
729 * <code>true</code> if the new data was successfully added,
730 * <code>false</code> if not.
733 * This function immediately resizes the OSData's buffer, if necessary,
734 * to accommodate the new total size.
736 * An OSData object created "NoCopy" does not allow bytes
739 virtual bool appendByte(
741 unsigned int numBytes
);
744 void setSerializable(bool serializable
);
746 #ifdef XNU_KERNEL_PRIVATE
747 /* Available within xnu source only */
752 virtual void setDeallocFunction(DeallocFunction func
);
753 OSMetaClassDeclareReservedUsed(OSData
, 0);
754 bool isSerializable(void);
757 OSMetaClassDeclareReservedUnused(OSData
, 1);
758 OSMetaClassDeclareReservedUnused(OSData
, 2);
759 OSMetaClassDeclareReservedUnused(OSData
, 3);
760 OSMetaClassDeclareReservedUnused(OSData
, 4);
761 OSMetaClassDeclareReservedUnused(OSData
, 5);
762 OSMetaClassDeclareReservedUnused(OSData
, 6);
763 OSMetaClassDeclareReservedUnused(OSData
, 7);
766 #endif /* !_OS_OSDATA_H */