sysstatemgmt/systemstatereferenceplugins/clayer/src/strtsecnoterequestqueue.cpp
changeset 0 4e1aa6a622a0
child 7 1a73e8f1b64d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysstatemgmt/systemstatereferenceplugins/clayer/src/strtsecnoterequestqueue.cpp	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,132 @@
+// Copyright (c) 2008-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:
+// Name        : strtsecnoterequestqueue.cpp
+// Part of     : System Startup / StrtSecObs
+// Implementation of CStrtSecNoteRequestQueue class
+// Version     : %version: 1 % << Don't touch! Updated by Synergy at check-out.
+// This material, including documentation and any related computer
+// programs, is protected by copyright controlled by Nokia.  All
+// rights are reserved.  Copying, including reproducing, storing,
+// adapting or translating, any or all of this material requires the
+// prior written consent of Nokia.  This material also contains
+// confidential information which may not be disclosed to others
+// without the prior written consent of Nokia.
+// Template version: 4.1.1
+// Nokia Core OS *
+//
+
+
+
+#include "strtsecnoterequestqueue.h"
+#include "ssmdebug.h"
+#include "clayerpanic.h"
+
+// Allocate queue space for this many items in advance.
+const TInt KPreallocatedQueueSize = 8;
+
+// ======== MEMBER FUNCTIONS ========
+
+// ---------------------------------------------------------------------------
+// CStrtSecNoteRequestQueue::NewL
+//
+// ---------------------------------------------------------------------------
+//
+CStrtSecNoteRequestQueue* CStrtSecNoteRequestQueue::NewL()
+    {
+    CStrtSecNoteRequestQueue* self = new( ELeave ) CStrtSecNoteRequestQueue;
+    CleanupStack::PushL( self );
+    self->ConstructL();
+    CleanupStack::Pop( self );
+    return self;
+    }
+
+// ---------------------------------------------------------------------------
+// CStrtSecNoteRequestQueue::~CStrtSecNoteRequestQueue
+//
+// ---------------------------------------------------------------------------
+//
+CStrtSecNoteRequestQueue::~CStrtSecNoteRequestQueue()
+    {
+    iArray.Close();
+    }
+
+// ---------------------------------------------------------------------------
+// CStrtSecNoteRequestQueue::Add
+//
+// ---------------------------------------------------------------------------
+//
+TInt CStrtSecNoteRequestQueue::Add( const TStrtSecurityNoteType aItem )
+    {
+	DEBUGPRINT2A("Item to add: %d", aItem);
+	__ASSERT_DEBUG(aItem >= ESecCodePIN1 && aItem < ESecNoteTypeLimit, CLAYER_PANIC(ECLayerInvalidNoteType));
+
+    TInt errorCode = iArray.Find( aItem );
+    if ( errorCode == KErrNotFound )
+        {
+        errorCode = iArray.Append( aItem );
+        }
+    return errorCode;
+    }
+
+// ---------------------------------------------------------------------------
+// CStrtSecNoteRequestQueue::Remove
+//
+// ---------------------------------------------------------------------------
+//
+void CStrtSecNoteRequestQueue::Remove( const TStrtSecurityNoteType aItem )
+    {
+	DEBUGPRINT2A("Item to remove: %d", aItem);
+    TInt idx = iArray.Find( aItem );
+    
+    if ( idx >= 0 && idx < iArray.Count() )
+        {
+        iArray.Remove( idx );
+        }
+    }
+
+// ---------------------------------------------------------------------------
+// CStrtSecNoteRequestQueue::GetFirst
+//
+// ---------------------------------------------------------------------------
+//
+TStrtSecurityNoteType CStrtSecNoteRequestQueue::GetFirst()
+    {
+    TStrtSecurityNoteType item = ESecNoteNone;
+    if ( iArray.Count() > 0 )
+        {
+        item = iArray[0];
+        iArray.Remove( 0 );
+        }
+    return item;
+    }
+
+// ---------------------------------------------------------------------------
+// CStrtSecNoteRequestQueue::CStrtSecNoteRequestQueue
+//
+// ---------------------------------------------------------------------------
+//
+CStrtSecNoteRequestQueue::CStrtSecNoteRequestQueue()
+    {
+    
+    }
+
+// ---------------------------------------------------------------------------
+// CStrtSecNoteRequestQueue::ConstructL
+//
+// ---------------------------------------------------------------------------
+//
+void CStrtSecNoteRequestQueue::ConstructL()
+    {
+    iArray.ReserveL( KPreallocatedQueueSize );
+    }