RClassUtils package:methods R Documentation _U_t_i_l_i_t_i_e_s _f_o_r _M_a_n_a_g_i_n_g _C_l_a_s_s _D_e_f_i_n_i_t_i_o_n_s _D_e_s_c_r_i_p_t_i_o_n: These are various functions to support the definition and use of formal classes. Most of them are rarely suitable to be called directly. Others are somewhat experimental and/or partially implemented only. Do refer to 'setClass' for normal code development. _U_s_a_g_e: testVirtual(properties, extends, prototype, where) makePrototypeFromClassDef(slots, ClassDef, extends, where) newEmptyObject() completeClassDefinition(Class, ClassDef, where, doExtends) getAllSuperClasses(ClassDef, simpleOnly = TRUE) superClassDepth(ClassDef, soFar, simpleOnly = TRUE) isVirtualClass(Class, where) newBasic(Class, ...) makeExtends(Class, to, coerce, test, replace, by, package, slots, classDef1, classDef2) reconcilePropertiesAndPrototype(name, properties, prototype, superClasses, where) tryNew(Class, where) trySilent(expr) empty.dump() showClass(Class, complete=TRUE, propertiesAreCalled="Slots") showExtends(ext, printTo = stdout()) possibleExtends(class1, class2, ClassDef1 = getClassDef(class1), ClassDef2 = getClassDef(class2, where = .classEnv(ClassDef1))) completeExtends(ClassDef, class2, extensionDef, where) classMetaName(name) methodsPackageMetaName(prefix, name, package = "") metaNameUndo(strings, prefix, searchForm = FALSE) requireMethods(functions, signature, message, where) checkSlotAssignment(obj, name, value) defaultPrototype() isClassDef(object) validSlotNames(names) getDataPart(object) setDataPart(object, value, check = TRUE) _S_u_m_m_a_r_y _o_f _F_u_n_c_t_i_o_n_s: '_t_e_s_t_V_i_r_t_u_a_l': Test for a Virtual Class. Figures out, as well as possible, whether the class with these properties, extension, and prototype is a virtual class. Can be forced to be virtual by extending '"VIRTUAL"'. Otherwise, a class is virtual only if it has no slots, extends no non-virtual classes, and has a 'NULL' Prototype. '_m_a_k_e_P_r_o_t_o_t_y_p_e_F_r_o_m_C_l_a_s_s_D_e_f': Makes the prototype implied by the class definition. The following three rules are applied in this order. 1. If the class has slots, then the prototype for each slot is used by default, but a corresponding element in the explicitly supplied prototype in 'ClassDef', if there is one, is used instead (but it must be coercible to the class of the slot). This includes the data part ('".Data"' slot) if there is one. 2. If there are no slots but a non-null prototype was specified, this is returned. 3. If there is a non-virtual superclass (a class in the extends list), then its prototype is used. The data part is extracted if needed (it is allowed to have two superclasses with a data part; the first is used and a warning issued on any others). If all three of the above fail, the prototype is 'NULL'. '_n_e_w_E_m_p_t_y_O_b_j_e_c_t': Utility function to create an empty object into which slots can be set. Currently just creates an empty list with class '"NULL"'. Later version should create a special object reference that marks an object currently with no slots and no data. '_c_o_m_p_l_e_t_e_C_l_a_s_s_D_e_f_i_n_i_t_i_o_n': Completes the definition of 'Class', relative to the class definitions visible from environment 'where'. If 'doExtends' is 'TRUE', complete the super- and sub-class information. This function is called when a class is defined or re-defined. '_g_e_t_F_r_o_m_C_l_a_s_s_D_e_f': Extracts one of the intrinsically defined class definition properties (".Properties", etc.) Strictly a utility function. '_g_e_t_S_l_o_t_s': Returns a named character vector. The names are the names of the slots, the values are the classes of the corresponding slots. The argument 'x' can either be the name of a class or the class definition object. '_g_e_t_A_l_l_S_u_p_e_r_C_l_a_s_s_e_s', '_s_u_p_e_r_C_l_a_s_s_D_e_p_t_h': Get the names of all the classes that this class definition extends. 'getAllSuperClasses' is a utility function used to complete a class definition. It returns all the superclasses reachable from this class, in breadth-first order (which is the order used for matching methods); that is, the first direct superclass followed by all its superclasses, then the next, etc. (The order is relevant only in the case that some of the superclasses have multiple inheritance.) 'superClassDepth', which is called from 'getAllSuperClasses', returns the same information, but as a list with components 'label' and 'depth', the latter for the number of generations back each class is in the inheritance tree. The argument 'soFar' is used to avoid loops in the network of class relationships. '_i_s_V_i_r_t_u_a_l_C_l_a_s_s': Is the named class a virtual class? A class is virtual if explicitly declared to be, and also if the class is not formally defined. '_a_s_s_i_g_n_C_l_a_s_s_D_e_f': assign the definition of the class to the specially named object '_n_e_w_B_a_s_i_c': the implementation of the function 'new' for basic classes that don't have a formal definition. Any of these could have a formal definition, except for 'Class="NULL"' (disallowed because 'NULL' can't have attributes). For all cases except '"NULL"', the class of the result will be set to 'Class'. See 'new' for the interpretation of the arguments. '_m_a_k_e_E_x_t_e_n_d_s': convert the argument to a list defining the extension mechanism. '_r_e_c_o_n_c_i_l_e_P_r_o_p_e_r_t_i_e_s_A_n_d_P_r_o_t_o_t_y_p_e': makes a list or a structure look like a prototype for the given class. Specifically, returns a structure with attributes corresponding to the slot names in properties and values taken from prototype if they exist there, from 'new(classi)' for the class, 'classi' of the slot if that succeeds, and 'NULL' otherwise. The prototype may imply slots not in the properties list, since properties does not include inherited slots (these are left unresolved until the class is used in a session). '_t_r_y_N_e_w': Tries to generate a new element from this class, but if the attempt fails (as, e.g., when the class is undefined or virtual) just returns 'NULL'. This is inefficient and also not a good idea when actually generating objects, but is useful in the initial definition of classes. '_s_h_o_w_C_l_a_s_s': Print the information about a class definition. If 'complete' is 'TRUE', include the indirect information about extensions. It is the utility called from 'show(getClass(.))', and the user should typically use 'getClass(.)' for looking at class definitions. '_s_h_o_w_E_x_t_e_n_d_s': Print the elements of the list of extensions; for 'printTo = FALSE', returns a list with components 'what' and 'how'; this is used e.g., by 'promptClass()'. '_p_o_s_s_i_b_l_e_E_x_t_e_n_d_s': Find the information that says whether class1 extends class2, directly or indirectly. This can be either a logical value or an object of class 'SClassExtension' containing various functions to test and/or coerce the relationship. '_c_o_m_p_l_e_t_e_E_x_t_e_n_d_s': complete the extends information in the class definition, by following transitive chains. If 'class2' and 'extensionDef' are included, this class relation is to be added. Otherwise just use the current 'ClassDef'. Both the 'contains' and 'subclasses' slots are completed with any indirect relations visible. '_c_l_a_s_s_M_e_t_a_N_a_m_e': a name for the object storing this class's definition '_m_e_t_h_o_d_s_P_a_c_k_a_g_e_M_e_t_a_N_a_m_e': a name mangling device to hide metadata defining method and class information. '_m_e_t_a_N_a_m_e_U_n_d_o' As its name implies, this function undoes the name-mangling used to produce meta-data object names, and returns a object of class 'ObjectsWithPackage'. '_r_e_q_u_i_r_e_M_e_t_h_o_d_s': Require a subclass to implement methods for the generic functions, for this signature. For each generic, 'setMethod' will be called to define a method that throws an error, with the supplied message. The 'requireMethods' function allows virtual classes to require actual classes that extend them to implement methods for certain functions, in effect creating an API for the virtual class. Otherwise, default methods for the corresponding function would be called, resulting in less helpful error messages or (worse still) silently incorrect results. '_c_h_e_c_k_S_l_o_t_A_s_s_i_g_n_m_e_n_t': Check that the value provided is allowed for this slot, by consulting the definition of the class. Called from the C code that assigns slots. For privileged slots (those that can only be set by accessor functions defined along with the class itself), the class designer may choose to improve efficiency by validating the value to be assigned in the accessor function and then calling 'slot<-' with the argument 'check=FALSE', to prevent the call to 'checkSlotAssignment'. '_d_e_f_a_u_l_t_P_r_o_t_o_t_y_p_e': The prototype for a class which will have slots, is not a virtual class, and does not extend one of the basic classes. Both its 'class' and its (R internal) type, 'typeof()', are '"S4"'. '._I_n_i_t_B_a_s_i_c_C_l_a_s_s_e_s', '._I_n_i_t_M_e_t_h_o_d_s_L_i_s_t_C_l_a_s_s', '._s_e_t_C_o_e_r_c_e_G_e_n_e_r_i_c': These functions perform part of the initialization of classes and methods, and are called (only!) from '.First.lib'. '_i_s_C_l_a_s_s_D_e_f': Is 'object' a representation of a class? '_v_a_l_i_d_S_l_o_t_N_a_m_e_s': Returns 'names' unless one of the names is reserved, in which case there is an error. (As of writing, '"class"' is the only reserved slot name.) '_g_e_t_D_a_t_a_P_a_r_t', '_s_e_t_D_a_t_a_P_a_r_t': Utilities called to implement 'object@.Data'. Calls to 'setDataPart' are also used to merge the data part of a superclass prototype. _E_x_a_m_p_l_e_s: typeof(defaultPrototype()) #-> "S4"