@@ -163,6 +163,26 @@ struct objc_method_description
163
163
const char *types;
164
164
};
165
165
166
+ /* *
167
+ * The objc_property_attribute_t type is used to store attributes for
168
+ * properties. This is used to store a decomposed version of the property
169
+ * encoding, with each flag stored in the name and each value in the value.
170
+ *
171
+ * All of the strings that these refer to are internal to the runtime and
172
+ * should not be freed.
173
+ */
174
+ typedef struct
175
+ {
176
+ /* *
177
+ * The flag that this attribute describes. All current flags are single characters,
178
+ */
179
+ const char *name;
180
+ /* *
181
+ */
182
+ const char *value;
183
+ } objc_property_attribute_t ;
184
+
185
+
166
186
167
187
#ifndef YES
168
188
# define YES ((BOOL )1 )
@@ -520,6 +540,12 @@ id objc_getClass(const char *name);
520
540
* Otherwise, it copies classes and returns the number copied.
521
541
*/
522
542
int objc_getClassList (Class *buffer, int bufferLen);
543
+ /* *
544
+ * Returns a copy of the list of all classes in the system. The caller is
545
+ * responsible for freeing this list. The number of classes is returned in the
546
+ * parameter.
547
+ */
548
+ Class *objc_copyClassList (unsigned int *outCount);
523
549
524
550
/* *
525
551
* Returns the metaclass with the specified name. This is equivalent to
@@ -544,6 +570,41 @@ id objc_lookUpClass(const char *name);
544
570
* Returns the protocol with the specified name.
545
571
*/
546
572
Protocol *objc_getProtocol (const char *name);
573
+ /* *
574
+ * Allocates a new protocol. This returns NULL if a protocol with the same
575
+ * name already exists in the system.
576
+ *
577
+ * Protocols are immutable after they have been registered, so may only be
578
+ * modified between calling this function and calling objc_registerProtocol().
579
+ */
580
+ Protocol *objc_allocateProtocol (const char *name);
581
+ /* *
582
+ * Registers a protocol with the runtime. After this point, the protocol may
583
+ * not be modified.
584
+ */
585
+ void objc_registerProtocol (Protocol *proto);
586
+ /* *
587
+ * Adds a method to the protocol.
588
+ */
589
+ void protocol_addMethodDescription (Protocol *aProtocol,
590
+ SEL name,
591
+ const char *types,
592
+ BOOL isRequiredMethod,
593
+ BOOL isInstanceMethod);
594
+ /* *
595
+ * Adds a protocol to the protocol.
596
+ */
597
+ void protocol_addProtocol (Protocol *aProtocol, Protocol *addition);
598
+ /* *
599
+ * Adds a property to the protocol.
600
+ */
601
+ void protocol_addProperty (Protocol *aProtocol,
602
+ const char *name,
603
+ const objc_property_attribute_t *attributes,
604
+ unsigned int attributeCount,
605
+ BOOL isRequiredProperty,
606
+ BOOL isInstanceProperty);
607
+
547
608
548
609
/* *
549
610
* Registers a new class and its metaclass with the runtime. This function
@@ -600,6 +661,36 @@ const char *property_getName(objc_property_t property);
600
661
*/
601
662
const char *property_getAttributes (objc_property_t property);
602
663
664
+ /* *
665
+ * Returns an array of attributes for this property.
666
+ */
667
+ objc_property_attribute_t *property_copyAttributeList (objc_property_t property,
668
+ unsigned int *outCount);
669
+ /* *
670
+ * Adds a property to the class, given a specified set of attributes. Note
671
+ * that this only sets the property metadata. The property accessor methods
672
+ * must already be created.
673
+ */
674
+ BOOL class_addProperty (Class cls,
675
+ const char *name,
676
+ const objc_property_attribute_t *attributes,
677
+ unsigned int attributeCount);
678
+
679
+ /* *
680
+ * Replaces property metadata. If the property does not exist, then this is
681
+ * equivalent to calling class_addProperty().
682
+ */
683
+ void class_replaceProperty (Class cls,
684
+ const char *name,
685
+ const objc_property_attribute_t *attributes,
686
+ unsigned int attributeCount);
687
+
688
+ /* *
689
+ * Returns a copy of a single attribute.
690
+ */
691
+ char *property_copyAttributeValue (objc_property_t property,
692
+ const char *attributeName);
693
+
603
694
/* *
604
695
* Testswhether a protocol conforms to another protocol.
605
696
*/
0 commit comments