src/hbcore/core/hbvariant_p.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 00:38:12 +0300
changeset 30 80e4d18b72f5
parent 21 4633027730f5
permissions -rw-r--r--
Revision: 201037 Kit: 201039

/****************************************************************************
**
** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (developer.feedback@nokia.com)
**
** This file is part of the HbCore module of the UI Extensions for Mobile.
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights.  These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at developer.feedback@nokia.com.
**
****************************************************************************/

#ifndef HBVARIANT_P_H
#define HBVARIANT_P_H

#include <QColor>
#include <QString>
#include <QVariant>
#include <QAtomicInt>

#include "hbmemoryutils_p.h"

class HbString;

class HB_CORE_PRIVATE_EXPORT HbVariant
{

friend class TestHbVariant;

public:
    enum Type {
        Invalid = 0,
        Int = 1,
        Double = 2,
        String = 3,
        StringList = 4,
        Color = 5,
        IntList = 6,
        LastType = 0xffffffff // need this so that gcc >= 3.4 allocates 32 bits for Type
    };

private:
    struct HbVariantData 
    {
        HbVariantData();
        ~HbVariantData();

        Type dataType() const {return mDataType;}
        void setDataType(Type dataType);

        union Data
        {
            int i;
            double d;
            qptrdiff offset;
        } mData;

        int stringSize;
        int listCount;
        QAtomicInt mRef;
    private:
        Type mDataType;
    };

public:
    HbVariant(HbMemoryManager::MemoryType type=HbMemoryManager::InvalidMemory);
    HbVariant(const HbVariant &other);
    HbVariant(int val, HbMemoryManager::MemoryType type);
    HbVariant(double val, HbMemoryManager::MemoryType type);
    HbVariant(const QString &str, HbMemoryManager::MemoryType type);
    HbVariant(const char *val, HbMemoryManager::MemoryType type);
    HbVariant(const QStringList &val, HbMemoryManager::MemoryType type);
    HbVariant(const QColor &col, HbMemoryManager::MemoryType type);
    HbVariant(const QList<int> &val, HbMemoryManager::MemoryType type);
    ~HbVariant();

    HbMemoryManager::MemoryType memoryType()
    {
        return mMemoryType;
    }

    Type type()
    {
        HbVariantData *data = getAddress<HbVariantData>(mMemoryType, mDataOffset, mShared);
        return data->dataType();
    }

#ifdef CSS_PARSER_TRACES
    void print() const;
#endif

    int toInt() const;
    QString toString() const;
    QColor toColor() const;
    QStringList toStringList() const;
    double toDouble() const;
    QList<int> toIntList() const;

    HbVariant & operator=( int val );
    HbVariant & operator=( double val );
    HbVariant & operator=( const QString& val );
    HbVariant & operator=( const HbString& val );
    HbVariant & operator=( const QColor& col );
    HbVariant & operator=( const QStringList& strList );
    HbVariant & operator=( const QList<int>& intList );
    HbVariant & operator=( const HbVariant& other );
    
    bool canConvert ( HbVariant::Type t ) const;
    bool convert ( HbVariant::Type t );
    operator QVariant() const;

    void clear();
    
private:
    HbVariantData * initializeData();
    void fillStringData(const QChar *str, int size);
    void fillStringListData(const QStringList &stringList);
    void fillColorData(const QColor &col);
    void fillIntListData(const QList<int> &intList);
    QString getString() const;
    QColor getColor() const;
    /**
     * to get address in given memory type for given offset
     * @Todo : this function needs to be fixed as hbstring taking mshared as another argument.
     */
    template<typename T>
    T * getAddress( HbMemoryManager::MemoryType type, qptrdiff offset, bool shared ) const
    {
        T* data = 0;
        if( shared == true ) {
            data = HbMemoryUtils::getAddress<T>(HbMemoryManager::SharedMemory, offset);
        } else {
            data = HbMemoryUtils::getAddress<T>(type, offset);
        }
        Q_ASSERT(data != 0);
        return data;
    }
    static bool reservesMemory(const HbVariantData *data)
    {
        return data->dataType() == HbVariant::String
               || data->dataType() == HbVariant::Color
               || data->dataType() == HbVariant::StringList
               || data->dataType() == HbVariant::IntList;
    }
    void freeMemory(HbVariantData *data)
    {
        if(reservesMemory(data)) {
            HbMemoryUtils::freeMemory(mMemoryType, data->mData.offset);
            data->mData.offset = -1;
            data->stringSize = 0;
        }
    }

    void detach();

private:
    HbMemoryManager::MemoryType mMemoryType;
    bool mShared;    
    qptrdiff mDataOffset;
};

#endif // HBVARIANT_P_H