os/graphics/windowing/windowserver/test/t_integ/src/t_wservconfigdata.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include "t_wservconfigdata.h"
    23 
    24 //
    25 // Construction/Destruction
    26 //
    27 
    28 CT_WServConfigData::CT_WServConfigData()
    29 	{
    30 	}
    31 
    32 CT_WServConfigData::~CT_WServConfigData()
    33 	{
    34 	Empty();
    35 	}
    36 
    37 void CT_WServConfigData::ReplaceData(const TDesC& aName, const TDesC& aData)
    38 	{
    39 	TInt	count=iArrayName.Count();
    40 	TInt	index=0;
    41 	for ( index=0; index<count; ++index )
    42 		{
    43 		if ( aName.Compare(iArrayName[index]) == 0 )
    44 			{
    45 			break;
    46 			}
    47 		}
    48 	
    49 	iArrayData.Remove(index);
    50 	iArrayData.Insert(aData,index);
    51 	}
    52 	
    53 void CT_WServConfigData::AddDataL(const TDesC& aName, const TDesC& aData)
    54 	{
    55 	//	Ensure name does not already exist
    56 	TInt	count=iArrayName.Count();
    57 	TInt	index=0;
    58 	for ( index=0; index<count; ++index )
    59 		{
    60 		if ( aName.Compare(iArrayName[index]) == 0 )
    61 			{
    62 			User::Leave(KErrAlreadyExists);
    63 			}
    64 		}
    65 
    66 	iArrayName.AppendL(aName);
    67 	iArrayData.AppendL(aData);
    68 	}
    69 
    70 void CT_WServConfigData::DeleteDataL(const TDesC& aName)
    71 	{
    72 	//	Ensure name already exist
    73 	TBool	found=EFalse;
    74 	TInt	count=iArrayName.Count();
    75 	for ( TInt index=0; (index<count) && (!found); ++index )
    76 		{
    77 		if ( aName.Compare(iArrayName[index]) == 0 )
    78 			{
    79 			found=ETrue;
    80 			iArrayName.Remove(index);
    81 			iArrayData.Remove(index);
    82 			}
    83 		}
    84 
    85 	if ( !found )
    86 		{
    87 		User::Leave(KErrNotFound);
    88 		}
    89 	}
    90 
    91 
    92 const TWServConfigData& CT_WServConfigData::GetData(const TInt aIndex) const
    93 	{
    94 	return iArrayData[aIndex];
    95 	}
    96 
    97 const TWServConfigData& CT_WServConfigData::GetName(const TInt aIndex) const
    98 	{
    99 	return iArrayName[aIndex];
   100 	}
   101 
   102 void CT_WServConfigData::Empty()
   103 	{
   104 	iArrayName.Close();
   105 	iArrayData.Close();
   106 	}
   107 
   108 TInt CT_WServConfigData::NoOfEntriesL() const
   109 	{
   110 	TInt	dataCount=iArrayData.Count();
   111 	TInt	nameCount=iArrayName.Count();
   112 
   113 	if (dataCount!=nameCount)
   114 		{
   115 		User::Leave(KErrGeneral);
   116 		}
   117 
   118 	return dataCount;
   119 	}