TKeyArrayPak Class Reference

#include <e32base.h>

Link against: euser_v5.lib

class TKeyArrayPak : public TKeyArrayVar

Inherits from

Detailed Description

Defines the characteristics of a key used to access the elements of packed arrays.

An object of this type can represent three categories of key, depending on the constructor used:

1. a descriptor key

2. a text key

3. a numeric key.

The InsertIsqL(), Find() and FindIsqL() member functions of the CArrayPakFlat class hierarchy need a TKeyArrayPak object as an argument to define the location and type of key within an array element.

Note that a TKeyArrayVar object is required for sorting a packed array. The implementation of the SortL() member function of the CArrayPakFlat class constructs a temporary CArrayVarFlat object which requires the TKeyArrayVar object.

See also: CArrayVarSeg CArrayPakFlat TKeyArrayVar

Constructor & Destructor Documentation

TKeyArrayPak ( TInt, TKeyCmpText )

IMPORT_CTKeyArrayPak(TIntanOffset,
TKeyCmpTextaType
)

Constructs the characteristics of a descriptor key.

No length value is passed as this is taken from the descriptor type key.

See also: TKeyCmpText

Parameters
anOffsetThe offset of the key from the start of an array element.
aTypeAn enumeration which defines the type of comparison to be made between two descriptor keys.

TKeyArrayPak ( TInt, TKeyCmpText, TInt )

IMPORT_CTKeyArrayPak(TIntanOffset,
TKeyCmpTextaType,
TIntaLength
)

Constructs the characteristics of a text key.

See also: TKeyCmpText

Parameters
anOffsetThe offset of the key from the start of an array element.
aTypeAn enumeration which defines the type of comparison to be made between two text keys.
aLengthThe length of the text key.

TKeyArrayPak ( TInt, TKeyCmpNumeric )

IMPORT_CTKeyArrayPak(TIntanOffset,
TKeyCmpNumericaType
)

Constructs the characteristics of a numeric key.

See also: TKeyCmpNumeric

Parameters
anOffsetThe offset of the key from the start of an array element.
aTypeAn enumeration which defines the type of the numeric key.

Member Function Documentation

At ( TInt )

IMPORT_C TAny *At(TIntanIndex)const [protected, virtual]

Reimplemented from TKeyArrayVar::At(TInt)const

Gets a pointer to the key of a specified array element.

The default implementation raises a USER 35 panic.

The function is called by TKey::Compare() to compare the keys of two elements.

The implementation provided by a derived class must convert the index to a pointer to the key within the corresponding element. The implementation depends on the design of the array but, as general rule, use the index value to get a pointer to the corresponding element and then add the TKey protected data member iKeyOffset to this pointer to get a pointer to the key itself.

By convention, the index value is relative to zero; i.e. a zero value refers to the first element in the array. By this convention, the index can take any value between zero and the number of elements within the array minus one.

The function must also handle the special index value KIndexPtr. When this value is passed, the function should return a pointer to the key within the sample element. A pointer to the sample element is held in the protected data member iPtr and can be set up using SetPtr().

The implementation of this function also assumes that the derived class has a pointer to the array itself or has a function for finding it.

See also: TKey::Compare TKey::SetPtr KIndexPtr

Parameters
anIndexThe index of the array element or the special index value KIndexPtr.
Return Value
An untyped pointer to the key within the specified array element or an untyped pointer to the key within the sample element, if KIndexPtr is passed as an argument.
Panic Codes
USER35, if no replacement function has been provided by a derived class.

Set ( CBufBase * )

IMPORT_C voidSet(CBufBase *aBase)[protected, virtual]

Reimplemented from TKeyArrayVar::Set(CBufBase *)