我试图找到QByteArray的内存布局(因为我必须与一个DLL接口,它有QByteArray作为参数)。 从原始的QT来源,我提取了以下内容:
template <typename BaseClass> struct QGenericAtomicOps {
};
template <int size> struct QBasicAtomicOps : QGenericAtomicOps < QBasicAtomicOps<size> > {
};
template <typename T> struct QAtomicOps : QBasicAtomicOps < sizeof( T ) > {
typedef T Type;
};
template <typename T>
struct QBasicAtomicInteger {
typedef QAtomicOps<T> Ops;
typename Ops::Type _q_value;
};
typedef QBasicAtomicInteger<int> QBasicAtomicInt;
struct RefCount {
QBasicAtomicInt atomic;
};
typedef void* qptrdiff;
struct QArrayData {
RefCount ref;
int size;
UINT alloc : 31;
UINT capacityReserved : 1;
qptrdiff offset; // in bytes from beginning of header
};
template <class T>
struct QTypedArrayData
: QArrayData {
};
struct QByteArray {
typedef QTypedArrayData<char> Data;
Data *d;
};
(在这段代码中,我删除了所有函数,因为我只对数据布局感兴趣。)
所以我假设,内存布局如下:
QByteArray
QArrayData * Data; // pointer to the array-data struct.
QArrayData
int ref; // the reference counter
int size; // the used data size
UINT alloc:31; // the number of bytes allocated
UINT reserve:1; // unknown
void* offset; // pointer to real data
这是对的吗? 我特别想知道'抵消';从我看到的代码看,真正的数据是在偏移后直接启动的,并且是结构的一部分。似乎有可能真实数据在'ArrayData'标题之前。
所以'd'可以指向其中一个布局:
1. [ref|size|alloc|reserve|offset|--the real data--]
2. [--the real data--|ref|size|alloc|reserve|-offset]
这是对的吗?
卡尔