phonebookui/Phonebook/Engine/inc/PbkCompressConfig.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 10:12:17 +0200
changeset 0 e686773b3f54
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*     Phonebook database compression configuration.
*
*/


#ifndef PbkCompressConfig_H
#define PbkCompressConfig_H

// INCLUDE FILES
#include <cntdb.h>
#include <PbkDebug.h>


// MACROS
#ifdef PBK_COMPRESS_ALWAYS
    #pragma message("Warning: PBK_COMPRESS_ALWAYS is set.")
#endif

/// Define to turn on compress debug logging
#undef PBK_COMPRESS_LOGGING

#ifdef PBK_COMPRESS_LOGGING
    #pragma message("Warning: PBK_COMPRESS_LOGGING is set.")
    #define PBK_COMPRESS_LOG RDebug::Print
    #define PBK_COMPRESS_STRING(s) _L(s)
#else
    #define PBK_COMPRESS_LOG PBK_DEBUG_PRINT
    #define PBK_COMPRESS_STRING PBK_DEBUG_STRING
#endif


/**
 * Phonebook compression configuration.
 */
namespace PbkCompressConfig
    {

    /**
     * Returns ETrue if aContactDb requires compression.
     */
    inline TBool CompressRequired(CContactDatabase& aContactDb)
        {
        #ifdef PBK_COMPRESS_ALWAYS
            const TBool result = ETrue;
        #else
            const TBool result = aContactDb.CompressRequired();
        #endif

        if (result)
            {
            PBK_COMPRESS_LOG(PBK_COMPRESS_STRING("PbkCompressConfig::CompressRequired() returns ETrue"));
            }
        return result;
        }

    }


#endif  // PbkCompressConfig_H

// End of File