uiacceltk/hitchcock/goommonitor/inc/goomapplicationconfig.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 07:56:43 +0200
changeset 0 15bf7259bb7c
child 3 d8a3531bc6b8
permissions -rw-r--r--
Revision: 201003

/*
* Copyright (c) 2008 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:  Configuration representation classes for Out of Memory Monitor
*
*/


#ifndef GOOMAPPLICATIONCONFIG_
#define GOOMAPPLICATIONCONFIG_

#include <e32base.h>

class CGOomCloseAppConfig;
class MGOomRuleConfig;

/*
 * A list of action configurations for a particular target application.
 *
 * All configured actions in this list must be for the same target application.
 * Actions may be configured to close the application or to run an OOM plugin.
 *  
 *  @lib oommonitor.lib
 *  @since S60 v5.0
 */
NONSHARABLE_CLASS(CGOomApplicationConfig) : public CBase
    {
public:
    
    /**
     * Two-phased constructor
     * @param aApplicationId the UID of the application
     */
	static CGOomApplicationConfig* NewL(TUint aApplicationId);
    
// Functions for getting configuration  
    
    /**
     * Return a pointer to the close app config, this may be NULL if no app close config has been configured
     * Ownership is NOT passed to the caller
     */
    inline CGOomCloseAppConfig* GetAppCloseConfig();
        
    inline TUint Id();
    
// Functions for setting configuration  

    inline void SetAppCloseConfig(CGOomCloseAppConfig* aActionConfig);
    
    /**
     * Add a rule
     * 
     * This class takes ownership of the given rule
     * The rule would will apply to the "application close" event
     */
    void AddRuleL(MGOomRuleConfig* aRule);
    
    ~CGOomApplicationConfig();

public:
    
    TUint iGoodRamThreshold;
    TUint iLowRamThreshold; 
    TUint iTargetFree;
    
private:
    
    void ConstructL();
    
    CGOomApplicationConfig(TUint aApplicationId);
    
    CGOomCloseAppConfig* iCloseAppConfig;
    
    TInt iIndex;
    
    TUint iApplicationId;
    };

#include "goomapplicationconfig.inl"

#endif /*GOOMAPPLICATIONCONFIG_*/