serviceproviders/sapi_logging/tsrc/testing/tlogprovidertest/src/tcancel.cpp
changeset 19 989d2f495d90
child 33 50974a8b132e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/serviceproviders/sapi_logging/tsrc/testing/tlogprovidertest/src/tcancel.cpp	Fri Jul 03 15:51:24 2009 +0100
@@ -0,0 +1,578 @@
+/*
+* 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 the License "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 <LiwServiceHandler.h>
+#include <LiwCommon.h>
+#include <logcli.h>
+#include <logwrap.h>
+#include "tlogprovidertest.h"
+#include "serviceerrno.h"
+#include "tcallback.h"
+#include "teventdetails.h"
+#include "tconstants.h"
+ 
+
+  
+  
+  TInt cancel1_0L(CEventDetails *aDetails)
+{
+tcallback iCallback;
+
+	CLiwServiceHandler* ServiceHandler = CLiwServiceHandler::NewL();
+     // Input and output parameter list
+    CLiwGenericParamList* inputlist = &(ServiceHandler->InParamListL());
+     CLiwGenericParamList* inputlist1 = &(ServiceHandler->InParamListL());
+    
+    CLiwGenericParamList* outputlist = &(ServiceHandler->OutParamListL());
+    CLiwGenericParamList* outputlist1 = &(ServiceHandler->OutParamListL());
+    
+    CLiwCriteriaItem* crit = CLiwCriteriaItem::NewL(1, KDsInterfaceName , KLoggingContents) ;
+    
+    crit->SetServiceClass(TUid::Uid(KLiwClassBase));
+    
+    RCriteriaArray a;
+    
+	
+	a.AppendL(crit);
+ 	
+	ServiceHandler->AttachL(a) ;
+	
+	
+	ServiceHandler->ExecuteServiceCmdL(*crit, *inputlist, *outputlist);
+	 
+ 	
+
+	
+    TInt pos = 0;
+	
+ 
+	const TLiwGenericParam *genericparm = outputlist->FindFirst(pos  , KDsInterfaceName);
+	
+	if(!genericparm)
+	{
+
+	 
+	 User :: Leave(KErrArgument) ;
+	}
+	
+   MLiwInterface* LogInterface = (genericparm->Value()).AsInterface();
+    
+    
+  TBufC8<20>CmdBufSet(KCmdAdd) ;
+  
+  outputlist->Reset() ;
+  
+  inputlist->Reset() ;
+  
+  CLiwDefaultMap *EventDetails = CLiwDefaultMap :: NewL() ;
+  
+  
+  
+  EventDetails->InsertL(KEventTypeKey , TLiwVariant(aDetails->GetEventType()) );
+  
+  
+ if(((unsigned int)aDetails->GetDurationType()!=0))
+ 	{
+ 	EventDetails->InsertL(KEventDurationKey ,TLiwVariant((unsigned int)aDetails->GetDurationType()) );
+ 	}
+    
+ if(aDetails->GetContactType() !=0 )
+ 	{
+ 	EventDetails->InsertL(KContactidKey , TLiwVariant(aDetails->GetContactType()) );
+ 	}
+    
+ if((unsigned int)aDetails->GetLinkType()!=0)
+ 	{
+ 	EventDetails->InsertL(KLinkKey , TLiwVariant((unsigned int)aDetails->GetLinkType()) );
+ 	}
+    
+ if(aDetails->GetTimer() !=0 )
+ 	{
+ 	EventDetails->InsertL(KEventTimeKey , TLiwVariant(aDetails->GetTimer())) ;
+ 	}
+    
+   
+  TBuf<10> EmptyDes ;
+   
+   
+   if(aDetails->GetSubjectType() != EmptyDes)
+   	{
+   	 EventDetails->InsertL(KSubjectKey , TLiwVariant(aDetails->GetSubjectType())) ;
+   	}
+    
+   
+   
+    
+ if(aDetails->GetNumberType()!= EmptyDes)
+ 	{
+ 	EventDetails->InsertL(KPhoneNumberKey , TLiwVariant(aDetails->GetNumberType())) ;
+ 	}
+    
+ if(aDetails->GetRemotePartyType() != EmptyDes)
+ 	{
+ 	EventDetails->InsertL(KRemotePartyKey , TLiwVariant(aDetails->GetRemotePartyType())) ;
+ 	}
+    
+ if(aDetails->GetDirectionType() >= 0 )
+	 {
+ 	EventDetails->InsertL(KDirectionKey , TLiwVariant(aDetails->GetDirectionType())) ;
+ 	}
+    
+ if(aDetails->GetDescriptionType() != EmptyDes)
+ 	{
+ 	EventDetails->InsertL(KDescriptionKey , TLiwVariant(aDetails->GetDescriptionType())) ;
+ 	}
+    
+ if(aDetails->GetStatusType() >= 0  )
+ 	{
+ 	EventDetails->InsertL(KDeliveryStatusKey , TLiwVariant(aDetails->GetStatusType())) ;
+ 	}
+    
+  
+
+  TBuf16 <10> Contents(KContentType) ;
+  
+  inputlist->AppendL(TLiwGenericParam(KContentTypeKey , TLiwVariant(Contents))) ;
+  
+  inputlist->AppendL(TLiwGenericParam(KEventDetails , TLiwVariant(EventDetails))) ;
+  
+  EventDetails->DecRef();
+    
+  LogInterface->ExecuteCmdL(CmdBufSet , *inputlist , *outputlist ); 
+ 
+  
+  
+  
+   TInt index = 0 ;
+   
+   const TLiwGenericParam *ErrCode  = outputlist->FindFirst(index , KErrCode) ;
+   
+   if(!ErrCode )
+    {
+    
+  	 User :: Leave(KErrArgument) ;
+    }
+    
+    TInt retval  = ErrCode->Value().AsTInt32() ;
+  
+  if(retval != SErrNone )
+  	{
+  	
+  	    LogInterface->Close() ;
+  	   delete ServiceHandler;
+  	   a.ResetAndDestroy();
+   	   a.Close();
+    
+      
+    
+  	 User :: Leave(KErrArgument) ;
+  	}
+   
+ 
+  
+   
+  index = 0 ;
+  const TLiwGenericParam *genparm = outputlist->FindFirst(index , KResponse) ;
+  
+  if(!genparm)
+    {
+   
+   	 User :: Leave(KErrArgument) ;
+    }
+    
+    
+     
+    
+       
+   TBufC<20> itemid = (genparm->Value()).AsDes() ;
+    
+    
+    //delete async
+    
+    
+     inputlist->Reset() ; outputlist->Reset() ;
+  
+   
+   //Insert the contenttype to inputlist
+   CLiwDefaultMap *Idmap = CLiwDefaultMap :: NewL() ;
+   Idmap->InsertL(KLogId ,TLiwVariant(itemid)) ;
+   
+    TBufC16<10> contentType(KContentType) ;
+   //Insert the contenttype to inputlist
+   inputlist->AppendL(TLiwGenericParam(KContentTypeKey , TLiwVariant(contentType))) ;
+ 
+   
+ // inputlist->AppendL(TLiwGenericParam(KLogId , TLiwVariant((TInt32)itemid))) ;
+    inputlist->AppendL(TLiwGenericParam(KData , TLiwVariant(Idmap))) ; 
+    Idmap->DecRef();
+ // CmdBuf = KCmdDelete ;
+  
+  
+  TBufC8<20>CmdBuf(KCmdDelete) ;
+  LogInterface->ExecuteCmdL(CmdBuf , *inputlist , *outputlist ,KLiwOptASyncronous, &iCallback) ;
+  
+  pos = 0 ;
+  const TLiwGenericParam *Errprm = outputlist->FindFirst(pos , KErrCode ) ;
+  
+  if(!Errprm)
+  	{
+   
+  	 User :: Leave(KErrArgument) ;
+  	}
+    
+    
+       
+       
+       
+  const TLiwGenericParam *transid = outputlist->FindFirst(index , KTransactionId) ;
+  
+  if(!transid)
+    {
+   
+   	 User :: Leave(KErrArgument) ;
+    }
+    
+    
+    
+    //cancel async
+   // inputlist->Reset();
+    //outputlist->Reset();
+    
+    
+    
+      TInt transid1 = (transid->Value()).AsTInt32() ;
+    
+     inputlist1->AppendL(TLiwGenericParam(KTransactionId , TLiwVariant((TInt32)transid1))) ; 
+    
+    
+    
+    
+    TBufC8<20>CmdBuf1(KCmdCancel) ;
+    
+  LogInterface->ExecuteCmdL(CmdBuf1 , *inputlist1 , *outputlist1 ,KLiwOptCancel);
+  
+   pos =0;
+  const TLiwGenericParam *Errprm1 = outputlist1->FindFirst(pos , KErrCode ) ;
+  
+  if(!Errprm1)
+  	{
+   
+  	 User :: Leave(KErrArgument) ;
+  	}
+    
+    
+ 
+ 
+ 
+ //deleting again
+ 
+ 
+  LogInterface->ExecuteCmdL(CmdBuf , *inputlist , *outputlist) ;
+ 
+   pos = 0 ;
+  const TLiwGenericParam *Errprm3 = outputlist->FindFirst(pos , KErrCode ) ;
+  
+  if(!Errprm3)
+  	{
+   
+  	 User :: Leave(KErrArgument) ;
+  	}
+ 
+   
+      LogInterface->Close() ;
+     delete ServiceHandler;
+    // delete crit;
+   
+   	 a.ResetAndDestroy();
+   	 a.Close();
+   
+   
+    }
+
+
+
+
+
+
+
+  TInt cancel1_1L(CEventDetails *aDetails)
+{
+tcallback iCallback;
+
+	CLiwServiceHandler* ServiceHandler = CLiwServiceHandler::NewL();
+     // Input and output parameter list
+    CLiwGenericParamList* inputlist = &(ServiceHandler->InParamListL());
+     CLiwGenericParamList* inputlist1 = &(ServiceHandler->InParamListL());
+    
+    CLiwGenericParamList* outputlist = &(ServiceHandler->OutParamListL());
+    CLiwGenericParamList* outputlist1 = &(ServiceHandler->OutParamListL());
+    
+    CLiwCriteriaItem* crit = CLiwCriteriaItem::NewL(1, KDsInterfaceName , KLoggingContents) ;
+    
+    crit->SetServiceClass(TUid::Uid(KLiwClassBase));
+    
+    RCriteriaArray a;
+    
+	
+	a.AppendL(crit);
+ 	
+	ServiceHandler->AttachL(a) ;
+	
+	
+	ServiceHandler->ExecuteServiceCmdL(*crit, *inputlist, *outputlist);
+	 
+ 	
+
+	
+    TInt pos = 0;
+	
+ 
+	const TLiwGenericParam *genericparm = outputlist->FindFirst(pos  , KDsInterfaceName);
+	
+	if(!genericparm)
+	{
+
+	 
+	 User :: Leave(KErrArgument) ;
+	}
+	
+   MLiwInterface* LogInterface = (genericparm->Value()).AsInterface();
+    
+    
+  TBufC8<20>CmdBufSet(KCmdAdd) ;
+  
+  outputlist->Reset() ;
+  
+  inputlist->Reset() ;
+  
+  CLiwDefaultMap *EventDetails = CLiwDefaultMap :: NewL() ;
+  
+  
+  
+  EventDetails->InsertL(KEventTypeKey , TLiwVariant(aDetails->GetEventType()) );
+  
+  
+ if(((unsigned int)aDetails->GetDurationType()!=0))
+ 	{
+ 	EventDetails->InsertL(KEventDurationKey ,TLiwVariant((unsigned int)aDetails->GetDurationType()) );
+ 	}
+    
+ if(aDetails->GetContactType() !=0 )
+ 	{
+ 	EventDetails->InsertL(KContactidKey , TLiwVariant(aDetails->GetContactType()) );
+ 	}
+    
+ if((unsigned int)aDetails->GetLinkType()!=0)
+ 	{
+ 	EventDetails->InsertL(KLinkKey , TLiwVariant((unsigned int)aDetails->GetLinkType()) );
+ 	}
+    
+ if(aDetails->GetTimer() !=0 )
+ 	{
+ 	EventDetails->InsertL(KEventTimeKey , TLiwVariant(aDetails->GetTimer())) ;
+ 	}
+    
+   
+  TBuf<10> EmptyDes ;
+   
+   
+   if(aDetails->GetSubjectType() != EmptyDes)
+   	{
+   	 EventDetails->InsertL(KSubjectKey , TLiwVariant(aDetails->GetSubjectType())) ;
+   	}
+    
+   
+   
+    
+ if(aDetails->GetNumberType()!= EmptyDes)
+ 	{
+ 	EventDetails->InsertL(KPhoneNumberKey , TLiwVariant(aDetails->GetNumberType())) ;
+ 	}
+    
+ if(aDetails->GetRemotePartyType() != EmptyDes)
+ 	{
+ 	EventDetails->InsertL(KRemotePartyKey , TLiwVariant(aDetails->GetRemotePartyType())) ;
+ 	}
+    
+ if(aDetails->GetDirectionType() >= 0 )
+	 {
+ 	EventDetails->InsertL(KDirectionKey , TLiwVariant(aDetails->GetDirectionType())) ;
+ 	}
+    
+ if(aDetails->GetDescriptionType() != EmptyDes)
+ 	{
+ 	EventDetails->InsertL(KDescriptionKey , TLiwVariant(aDetails->GetDescriptionType())) ;
+ 	}
+    
+ if(aDetails->GetStatusType() >= 0  )
+ 	{
+ 	EventDetails->InsertL(KDeliveryStatusKey , TLiwVariant(aDetails->GetStatusType())) ;
+ 	}
+    
+  
+
+  TBuf16 <10> Contents(KContentType) ;
+  
+  inputlist->AppendL(TLiwGenericParam(KContentTypeKey , TLiwVariant(Contents))) ;
+  
+  inputlist->AppendL(TLiwGenericParam(KEventDetails , TLiwVariant(EventDetails))) ;
+  
+  EventDetails->DecRef();
+    
+  LogInterface->ExecuteCmdL(CmdBufSet , *inputlist , *outputlist ); 
+ 
+  
+  
+  
+   TInt index = 0 ;
+   
+   const TLiwGenericParam *ErrCode  = outputlist->FindFirst(index , KErrCode) ;
+   
+   if(!ErrCode )
+    {
+    
+  	 User :: Leave(KErrArgument) ;
+    }
+    
+    TInt retval  = ErrCode->Value().AsTInt32() ;
+  
+  if(retval != SErrNone )
+  	{
+  	
+  	    LogInterface->Close() ;
+  	   delete ServiceHandler;
+  	   a.ResetAndDestroy();
+   	   a.Close();
+    
+      
+    
+  	 User :: Leave(KErrArgument) ;
+  	}
+   
+ 
+  
+   
+  index = 0 ;
+  const TLiwGenericParam *genparm = outputlist->FindFirst(index , KResponse) ;
+  
+  if(!genparm)
+    {
+   
+   	 User :: Leave(KErrArgument) ;
+    }
+    
+    
+     
+    
+       
+   TBufC<20> itemid = (genparm->Value()).AsDes() ;
+    
+    
+    //delete async
+    
+    
+     inputlist->Reset() ; outputlist->Reset() ;
+  
+   
+   //Insert the contenttype to inputlist
+   CLiwDefaultMap *Idmap = CLiwDefaultMap :: NewL() ;
+   Idmap->InsertL(KLogId ,TLiwVariant(itemid)) ;
+   
+    TBufC16<10> contentType(KContentType) ;
+   //Insert the contenttype to inputlist
+   inputlist->AppendL(TLiwGenericParam(KContentTypeKey , TLiwVariant(contentType))) ;
+ 
+   
+ // inputlist->AppendL(TLiwGenericParam(KLogId , TLiwVariant((TInt32)itemid))) ;
+    inputlist->AppendL(TLiwGenericParam(KData , TLiwVariant(Idmap))) ; 
+    Idmap->DecRef();
+ // CmdBuf = KCmdDelete ;
+  
+  
+  TBufC8<20>CmdBuf(KCmdDelete) ;
+  LogInterface->ExecuteCmdL(CmdBuf , *inputlist , *outputlist ,KLiwOptASyncronous, &iCallback) ;
+  
+  pos = 0 ;
+  const TLiwGenericParam *Errprm = outputlist->FindFirst(pos , KErrCode ) ;
+  
+  if(!Errprm)
+  	{
+   
+  	 User :: Leave(KErrArgument) ;
+  	}
+    
+    
+       
+       
+       
+  const TLiwGenericParam *transid = outputlist->FindFirst(index , KTransactionId) ;
+  
+  if(!transid)
+    {
+   
+   	 User :: Leave(KErrArgument) ;
+    }
+    
+    
+    
+    //cancel async
+   // inputlist->Reset();
+    //outputlist->Reset();
+    
+    
+    
+     // TInt transid1 = (transid->Value()).AsTInt32() ;
+      TInt transid1 = -1;
+    
+     inputlist1->AppendL(TLiwGenericParam(KTransactionId , TLiwVariant((TInt32)transid1))) ; 
+    
+    
+    
+    
+    TBufC8<20>CmdBuf1(KCmdCancel) ;
+    
+ TRAPD(retur, LogInterface->ExecuteCmdL(CmdBuf1 , *inputlist1 , *outputlist1 ,KLiwOptCancel));
+  
+   pos =0;
+  const TLiwGenericParam *Errprm1 = outputlist1->FindFirst(pos , KErrCode ) ;
+  
+  if(!Errprm1)
+  	{
+   
+  	 User :: Leave(KErrArgument) ;
+  	}
+    
+    
+ 
+
+ 
+   
+      LogInterface->Close() ;
+     delete ServiceHandler;
+    // delete crit;
+   
+   	 a.ResetAndDestroy();
+   	 a.Close();
+   
+   
+    }
+
+
+
+
+
+