Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #include "t_crepositorydata.h"
24 _LIT(KCmdNewL, "NewL");
25 _LIT(KCmdDestructor, "~");
30 //INI Key names literals
31 _LIT(KRepUID, "RepUID");
32 _LIT(KRepItemID, "ItemID");
33 _LIT(KRepSetValue, "SetValue");
37 * Two phase constructor
39 * @leave system wide error
41 CT_CRepositoryData* CT_CRepositoryData::NewL()
43 CT_CRepositoryData* ret = new (ELeave) CT_CRepositoryData();
44 CleanupStack::PushL(ret);
46 CleanupStack::Pop(ret);
51 * Private constructor. First phase construction
53 CT_CRepositoryData::CT_CRepositoryData()
60 * Second phase construction
65 * @leave system wide error
67 void CT_CRepositoryData::ConstructL()
74 CT_CRepositoryData::~CT_CRepositoryData()
80 * Return a pointer to the object that the data wraps
82 * @return pointer to the object that the data wraps
84 TAny* CT_CRepositoryData::GetObject()
92 void CT_CRepositoryData::DestroyData()
102 * Process a command read from the Ini file
103 * @param aCommand - The command to process
104 * @param aSection - The section get from the *.ini file of the project T_Wlan
105 * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
106 * @return TBool - ETrue if the command is process
107 * @leave - system wide error
109 TBool CT_CRepositoryData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
113 if (aCommand == KCmdNewL)
117 else if (aCommand == KCmdDestructor)
121 else if (aCommand == KCmdSet)
127 ERR_PRINTF1(_L("Unknown command."));
135 * Create an instance of CRepository
136 * @param aSection - Section to read from the ini file
139 void CT_CRepositoryData::DoCmdNewL(const TTEFSectionName& aSection)
141 INFO_PRINTF1(_L("*START*CT_CRepositoryData::DoCmdNewL"));
143 TBool dataOk = ETrue;
146 if(!GetHexFromConfig(aSection, KRepUID, parRepUID))
148 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepUID);
149 SetBlockResult(EFail);
157 repUid = TUid::Uid(parRepUID);
158 TRAPD(error, iRepository = CRepository::NewL(repUid));
159 if(error != KErrNone)
161 ERR_PRINTF2(_L("Could not create CRepository: error %d"), error);
166 INFO_PRINTF1(_L("*END*CT_CRepositoryData::DoCmdNewL"));
170 * Delete an instance of CRepository
174 void CT_CRepositoryData::DoCmdDestructor()
176 INFO_PRINTF1(_L("*START*CT_CRepositoryData::DoCmdDestroyData"));
178 INFO_PRINTF1(_L("*END*CT_CRepositoryData::DoCmdDestroyData"));
182 * Setting the central repository
183 * @param aSection - Section to read from the ini file
186 void CT_CRepositoryData::DoCmdSet(const TTEFSectionName& aSection)
188 INFO_PRINTF1(_L("*START* CT_CRepositoryData::DoCmdSet"));
189 TBool dataOk = ETrue;
192 if(!GetHexFromConfig(aSection, KRepItemID, parRepItemID))
194 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepItemID);
195 SetBlockResult(EFail);
200 if(!GetIntFromConfig(aSection, KRepSetValue, parRepSetValue))
202 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepSetValue);
203 SetBlockResult(EFail);
209 TInt error = KErrNone;
210 INFO_PRINTF2(_L("ItemId = %d"),parRepItemID);
211 INFO_PRINTF2(_L("DataId = %d"),parRepSetValue);
213 error = iRepository->Set(parRepItemID, parRepSetValue);
215 if(error != KErrNone)
217 ERR_PRINTF3(_L("Setting the central repository parameter %d failed with error %d"), parRepItemID, error);
221 INFO_PRINTF1(_L("*END* CT_CRepositoryData::DoCmdSet"));