tstaskmonitor/server/src/tsrunningappstorage.cpp
changeset 102 8b8b34fa9751
parent 100 0920c6a9b6c8
child 106 e78d6e055a5b
--- a/tstaskmonitor/server/src/tsrunningappstorage.cpp	Tue Jun 29 10:20:30 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,139 +0,0 @@
-/*
-* Copyright (c) 2009 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:
-*
-*/
-#include "tsrunningappstorage.h"
-#include "tsdatalist.h"
-#include "tsentry.h"
-#include <s32strm.h>
-#include <s32mem.h>
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-CRunningAppStorage::CRunningAppStorage(MHsDataObserver& observer)
-: mObserver(observer)
-{
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-CRunningAppStorage::~CRunningAppStorage()
-{
-    mData.Close();
-    delete mEngine;
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-CRunningAppStorage* CRunningAppStorage::NewL(MHsDataObserver& observer,
-                                             MTsResourceManager& resources,
-                                             MTsWindowGroupsMonitor &wsMonitor)
-{
-    CRunningAppStorage * self = new (ELeave)CRunningAppStorage(observer);
-    CleanupStack::PushL(self);
-    self->ConstructL(resources, wsMonitor);
-    CleanupStack::Pop(self);
-    return self;
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-void CRunningAppStorage::ConstructL(MTsResourceManager& resources, 
-                                    MTsWindowGroupsMonitor &wsMonitor)
-{
-    mEngine = CTsDataList::NewL(resources, wsMonitor, *this) ;
-    RArray<RWsSession::TWindowGroupChainInfo> wgList;
-    CleanupClosePushL(wgList);
-    User::LeaveIfError(resources.WsSession().WindowGroupList(&wgList));
-    mEngine->HandleWindowGroupChanged(resources, wgList.Array());
-    CleanupStack::PopAndDestroy(&wgList);
-    DataChangedL();
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-const TDesC8& CRunningAppStorage::Data() const
-{
-    return mData;
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-void CRunningAppStorage::DataChanged() 
-{
-    TRAPD( err, DataChangedL() );
-    if ( err == KErrNone)
-    {
-        mObserver.DataChanged();
-    }
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-void CRunningAppStorage::DataChangedL()
-{
-    const TInt KExpandSize = 256; // "Granularity" of dynamic buffer
-    CBufFlat* buf = CBufFlat::NewL(KExpandSize);
-    CleanupStack::PushL(buf);
-    RBufWriteStream stream(*buf); 
-    CleanupClosePushL(stream);
-    CTsEntry::ExternalizeArrayL(stream, mEngine->Data());
-    CleanupStack::PopAndDestroy(&stream);
-    mData.Close();
-    mData.CreateL( buf->Size() );
-    buf->Read(0, mData, buf->Size());
-    CleanupStack::PopAndDestroy(buf);
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-void CRunningAppStorage::UpdateL(TInt key, const CFbsBitmap& data, TInt param, TInt priority)
-{
-    mEngine->UpdateL(key, data, param, priority);
-    
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-void CRunningAppStorage::UpdateL(TInt key, const Visibility& data, TInt param)
-{
-    mEngine->UpdateL(key, data, param);
-}
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-void CRunningAppStorage::RemoveL(TInt key, TInt param)
-{
-    mEngine->RemoveL(key, param);
-}