#include <e32base.h>
class CObjectCon : public CBase |
Public Attributes | |
---|---|
TInt | iUniqueID |
Public Member Functions | |
---|---|
~CObjectCon() | |
IMPORT_C void | AddL(CObject *) |
IMPORT_C CObject * | At(TInt) |
IMPORT_C CObject * | AtL(TInt) |
IMPORT_C TInt | CheckUniqueFullName(const CObject *, const TDesC &) |
IMPORT_C TInt | CheckUniqueFullName(const CObject *) |
TInt | Count() |
IMPORT_C TInt | FindByFullName(TInt &, const TDesC &, TFullName &) |
IMPORT_C TInt | FindByName(TInt &, const TDesC &, TName &) |
IMPORT_C CObjectCon * | NewL() |
IMPORT_C void | Remove(CObject *) |
TInt | UniqueID() |
IMPORT_C CObject * | operator[](TInt) |
Protected Member Functions | |
---|---|
CObjectCon(TInt) | |
TBool | NamesMatch(const CObject *, const CObject *) |
TBool | NamesMatch(const CObject *, const TName &, const CObject *) |
An object container.
An object container acts as a home for a set of related reference counting objects.
A reference counting object, a CObject type, must be added to an object container. Only one instance of a given reference counting object can be held by an object container, i.e. each object within an object container must be distinct.
Object containers are constructed by an object container index, a CObjectConIx type.
Note that this class is not intended for user derivation.
See also: CObject CObjectConIx
IMPORT_C | CObjectCon | ( | TInt | aUniqueID | ) | [protected] |
Constructor taking a unique Id.
Parameters | |
---|---|
aUniqueID | The unique Id value. |
IMPORT_C | ~CObjectCon | ( | ) |
Destructor.
Frees all resources owned by the object container, prior to its destruction.
In particular, it destroys all contained reference counting objects.
See also: CObject
IMPORT_C void | AddL | ( | CObject * | anObj | ) |
Adds a reference counting object to this object container.
If the specified reference counting object has a name, it must be valid, otherwise the function leaves with KErrBadName; in addition, the reference counting object's full name must be unique to this object container, otherwise the function leaves with KErrAlreadyExists.
If the specified reference counting object has no name, then the object itself must be unique to the object container, i.e. the object container should not already contain the same reference counting object, otherwise the function leaves with KErrAlreadyExists.
Parameters | |
---|---|
anObj | A pointer to the reference counting object to be added. |
Gets a pointer to the reference counting object with the specified find-handle number.
A find-handle number is an integer which uniquely identifies a reference counting object with respect to its object container.
Parameters | |
---|---|
aFindHandle | The find-handle number of the reference counting object. The unique Id part of this number must be the same as the unique Id of this container. The index part of the find-handle number must be a valid index. |
Panic Codes | |
---|---|
E32User-CBase | 38 if the unique Id part of aFindHandle is not the same as the unique Id of this container. |
E32User-CBase | 39 if the index part of aFindHandle is negative or greater than or equal to the total number of reference counting objects held by this object container. |
Gets a pointer to the reference counting object with the specified find-handle number, and leaves on error..
A find-handle number is an integer which uniquely identifies a reference counting object with respect to its object container.
Parameters | |
---|---|
aFindHandle | The find-handle number of the reference counting object. The unique Id part of this number must be the same as the unique Id of this container. The index part of the find-handle number must be a valid index. |
Leave Codes | |
---|---|
KErrBadHandle | if the unique Id part of aFindHandle is not the same as the unique Id of this container. |
KErrArgument | if the index part of aFindHandle is negative or greater than or equal to the total number of reference counting objects held by this object container. |
Checks that a name will be unique.
The function checks that no reference counting object exists in this object container with the same full name as that generated from the specified name and the specified owning reference counting object.
This is a useful test to ensure that the name for a potential new reference counting object will result in a unique full name.
Parameters | |
---|---|
anOwner | A pointer to a potential owning reference counting object. |
aName | The name for a potential new reference counting object. |
Checks that the specified reference counting object does not already exist in this object container.
Uniqueness is decided by name, if the object has a name, otherwise by pointer.
If the reference counting object has a name, then it is unique only if there is no other reference counting object in the container with the same full name.
If the reference counting object has no name, then it is unique only if there is no other reference counting object in the container with the same pointer.
Parameters | |
---|---|
anObject | A pointer to the reference counting object to be checked. |
TInt | Count | ( | ) | const [inline] |
Gets the number of reference counting objects in this object container.
Searches for the reference counting object whose full name matches the specified match pattern.
The search starts at the reference counting object following the one associated with the specified find-handle number. If the specified find-handle number is zero, then searching starts at the beginning of the object container.
Notes:
1. names are folded for the purpose of pattern matching
2. if the specified find-handle number is non-zero, then the unique Id part of the number must be the same as the unique Id of this container.
Parameters | |
---|---|
aFindHandle | On entry, contains the find-handle number of a reference counting object from where searching is to start or zero. On return, if an object is found, then this is set to the find-handle number of that object; if no object is found, then this is set to a generated number, the index part of which has the value 0x7fff. If the object container is empty, then this reference is not changed. |
aMatch | The match pattern. |
aFullName | A modifiable buffer descriptor with a defined maximum length. On return, if an object is found, then this contains the full name of that object; if no object is found, then the length of this descriptor is set to zero. If the object container is empty, then this reference is not changed. |
Panic Codes | |
---|---|
E32User-CBase | 38 if aFindHandle is non-zero and the unique Id part of it is not the same as the unique Id of this container. |
Searches for the reference counting object whose name matches the specified match pattern.
The search starts at the reference counting object following the one associated with the specified find-handle number. If the specified find-handle number is zero, then searching starts at the beginning of the object container.
Notes:
1. names are folded for the purpose of pattern matching
2. if the specified find-handle number is non-zero, then the unique Id part of the number must be the same as the unique Id of this container.
Parameters | |
---|---|
aFindHandle | On entry, contains the find-handle number of a reference counting object from where searching is to start, or zero. On return, if an object is found, then this is set to the find-handle number of that object; if no object is found, then this is set to a generated number, the index part of which has the value 0x7fff. If the object container is empty, then this reference is not changed. |
aMatch | The match pattern. |
aName | A modifiable buffer descriptor with a defined maximum length. On return, if an object is found, then this contains the name of that object; if no object is found, then the length of this descriptor is set to zero. If the object container is empty, then this reference is not changed. |
Panic Codes | |
---|---|
E32User-CBase | 38 if aFindHandle is non-zero and the unique Id part of it is not the same as the unique Id of this container. |
protected recursive function for use by CheckUniqueFullName
TBool | NamesMatch | ( | const CObject * | anObject, |
const TName & | anObjectName, | |||
const CObject * | aCurrentObject | |||
) | const [protected] |
protected recursive function for use by CheckUniqueFullName
IMPORT_C CObjectCon * | NewL | ( | ) | [static] |
Creates an object container.
Open code rarely, if ever, explicitly calls this function. Instead, call the CreateL() member function of the container index, CObjectConIx, which uses this function in its implementation.
See also: CObjectConIx::CreateL
IMPORT_C void | Remove | ( | CObject * | anObj | ) |
Removes a reference counting object from this object container.
The specified reference counting object is destroyed on removal.
Parameters | |
---|---|
anObj | A pointer to the reference counting object to be removed. |
Panic Codes | |
---|---|
E32USER-CBase | 35 if the reference counting object is not held by this object container. |
TInt | UniqueID | ( | ) | const [inline] |
Gets this object container's unique ID.
Gets a pointer to the reference counting object located at the specified offset within the object container.
Parameters | |
---|---|
anIndex | The offset of the reference counting object within the object container. Offset is relative to zero. |
Panic Codes | |
---|---|
E32USER-CBase | 21 if anIndex is negative or is greater than or equal to the total number of objects held by the container. |