os/persistentdata/loggingservices/filelogger/SSVR/FLOGSVR.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1997-2010 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 */
    19 
    20 #include "FLOGSVR.H"
    21 #include "FLOGMAN.H"
    22 #include "FLOGSTD.H"
    23 
    24 /**
    25 @internalComponent
    26 */
    27 const TInt KOpenLogFilesGranularity=5;
    28 
    29 /* Internal error. Use positive number to ensure no conflict with other error code
    30     Indicate that client message has panic'ed and should not be completed.
    31 */
    32 const TInt KErrMessagePanic = 1;  
    33 
    34 /**
    35 panics for log client
    36 
    37 @internalComponent
    38 */
    39 enum TLogClientPanic 
    40     {
    41 	ELogDirectoryNameDoesNotExist =1,   ///<  panic if no log directory name 
    42 	ELogFileNameDoesNotExist	        ///< panic if file name doesnot exist 
    43 	};
    44 
    45 /**
    46 CFileLoggerServer class definition
    47 */
    48 
    49 CFileLoggerServer* CFileLoggerServer::NewL()
    50 /**
    51 Creates new CFileLoggerServer object
    52 
    53 @return Pointer to CFileLoggerServer object
    54 */
    55 	{
    56 
    57 	CFileLoggerServer* r=new(ELeave) CFileLoggerServer();
    58 	CleanupStack::PushL(r);
    59 	r->ConstructL();
    60 	r->StartL(KFLoggerServerName);
    61 	CleanupStack::Pop();
    62 	return r;
    63 	}
    64 
    65 CFileLoggerServer::CFileLoggerServer()
    66  	: CServer2(EPriority)
    67  	{}
    68 
    69 void CFileLoggerServer::ConstructL()
    70 	{
    71 
    72 	iLoggerManager=CFileLoggerManager::NewL();
    73 	iSessionCounter=CFileLogSessionCounter::NewL();
    74 	}
    75 
    76 CFileLoggerServer::~CFileLoggerServer()
    77 /**
    78 Destructor
    79 */
    80 	{
    81 
    82 	delete iSessionCounter;
    83 	delete iLoggerManager;
    84 	}
    85 
    86 CFileLogSessionCounter* CFileLoggerServer::SessionCounter() const
    87 	{
    88 
    89 	return iSessionCounter;
    90 	}
    91 
    92 void CFileLoggerServer::Error(TInt aError)
    93 	{
    94 
    95 	Message().Complete(aError);
    96 	ReStart();
    97 	}
    98 
    99 CSession2* CFileLoggerServer::NewSessionL(const TVersion &aVersion, const RMessage2& /* aMessage */) const
   100 /**
   101 Create a new server session. Check we're the right version and make a new session
   102 
   103 @param aVersion version of new session
   104 */
   105 	{
   106 
   107 	TVersion v(KFLogSrvMajorVersionNumber,KFLogSrvMinorVersionNumber,KFLogSrvBuildVersionNumber);
   108 	if (!User::QueryVersionSupported(v,aVersion))
   109 		User::Leave(KErrNotSupported);
   110 	
   111 	iSessionCounter->CancelTimer();
   112 	return CFileLogSession::NewL(CONST_CAST(CFileLoggerServer*,this),iLoggerManager);
   113 	}
   114 /**
   115 CFileLogSessionCounter class definition 
   116 */
   117 
   118 CFileLogSessionCounter* CFileLogSessionCounter::NewL()
   119 /**
   120 Creates new CFileLogSessionCounter object
   121 
   122 @return Pointer to CFileLogSessionCounter object
   123 */
   124 	{
   125 	
   126 	CFileLogSessionCounter* r=new(ELeave) CFileLogSessionCounter();
   127 	CleanupStack::PushL(r);
   128 	r->ConstructL();
   129 	CleanupStack::Pop();
   130 	return r;
   131 	}
   132 
   133 CFileLogSessionCounter::~CFileLogSessionCounter()
   134 /**
   135 Destructor
   136 */
   137 	{
   138 
   139 	delete iShutdownTimer;
   140 	}
   141 
   142 CFileLogSessionCounter::CFileLogSessionCounter()
   143 	: iSessionCount(0)
   144 /**
   145 Default Constructor
   146 */
   147 	{}
   148 
   149 void CFileLogSessionCounter::ConstructL()
   150 	{
   151 
   152 	iShutdownTimer=CShutdownTimer::NewL();
   153 	}
   154 	
   155 void CFileLogSessionCounter::IncrementSessionCount()
   156 /**
   157 Increments the Session count 
   158 */
   159 	{
   160 
   161 	iSessionCount++;
   162 	}
   163 
   164 void CFileLogSessionCounter::DecrementSessionCount()
   165 /**
   166 Decrements the Session count
   167 */
   168 	{
   169 
   170 	iSessionCount--;
   171 	if (iSessionCount<=0)
   172 		iShutdownTimer->After(KShutdownPause);
   173 	}
   174 
   175 void CFileLogSessionCounter::CancelTimer()
   176 /**
   177 Cancels the timer 
   178 */
   179 	{
   180 
   181 	iShutdownTimer->Cancel();
   182 	}	
   183 
   184 /**
   185 CShutdownTimer class definitions
   186 */
   187 
   188 CShutdownTimer* CShutdownTimer::NewL()
   189 /**
   190 Creates new CShutdownTimer object
   191 @return Pointer to CShutdownTimer object
   192 */
   193 	{
   194 
   195 	CShutdownTimer* r=new(ELeave) CShutdownTimer();
   196 	CleanupStack::PushL(r);
   197 	r->ConstructL();
   198 	CleanupStack::Pop();
   199 	return r;
   200 	}
   201 
   202 CShutdownTimer::~CShutdownTimer()
   203 /**
   204 Destructor
   205 */
   206 	{}
   207 
   208 CShutdownTimer::CShutdownTimer()
   209 	: CTimer(EPriorityIdle)
   210 /**
   211 Default Constructor
   212 */
   213 	{
   214 	CActiveScheduler::Add(this);
   215 	}
   216 
   217 void CShutdownTimer::RunL()
   218 /**
   219 */
   220 	{
   221 
   222 	CActiveScheduler::Stop();
   223 	}
   224 
   225 /**
   226 CFileLogSession class definition
   227 */
   228 
   229 CFileLogSession* CFileLogSession::NewL(CFileLoggerServer* aServer, CFileLoggerManager* aManager)
   230  	{
   231    
   232  	CFileLogSession* r=new(ELeave) CFileLogSession(aServer,aManager);
   233  	CleanupStack::PushL(r);
   234  	r->ConstructL();
   235  	CleanupStack::Pop();
   236  	return r;
   237  	}
   238 
   239 CFileLogSession::CFileLogSession( CFileLoggerServer* aServer, CFileLoggerManager* aManager)
   240  	: CSession2(), iLoggerServer(aServer), iLoggerManager(aManager)
   241  	{}
   242 
   243 void CFileLogSession::ConstructL()
   244 	{
   245 
   246 	iLoggerServer->SessionCounter()->IncrementSessionCount();		// should be done first because it will be decremented in the destructor
   247 	iOpenLogFiles=new(ELeave) CArrayFixFlat<TLogFile>(KOpenLogFilesGranularity);
   248  	}
   249 
   250 CFileLogSession::~CFileLogSession()
   251 /**
   252 Destructor
   253 */
   254 	{
   255 	if  (iOpenLogFiles)
   256 		{
   257 	TInt count=iOpenLogFiles->Count();
   258 	TInt i;
   259 	for (i=0; i<count; i++)
   260 		{
   261 		iLoggerManager->CloseLog(iOpenLogFiles->At(i));
   262 		}
   263 	iOpenLogFiles->Delete(0,count);
   264 	delete iOpenLogFiles;
   265 		}
   266 	iLoggerServer->SessionCounter()->DecrementSessionCount();		// starts the timer if this is the last session
   267 	}
   268 
   269 void CFileLogSession::ServiceL(const RMessage2& aMessage)
   270 /**
   271 @internalTechnology
   272 */
   273 	{
   274   
   275  	TRAPD(ret,DispatchMessageL(aMessage));
   276  	if (ret!=KErrMessagePanic)
   277  	    {
   278         aMessage.Complete(ret);
   279  	    }
   280  	}
   281 
   282 void CFileLogSession::DispatchMessageL(const RMessage2& aMessage)
   283  	{
   284  
   285  	TInt func=aMessage.Function();
   286  	if (func!=ECreateLog && func!=EWriteLog && func!=ECloseLog && func!=ECreateWriteAndCloseLog)
   287  		User::Leave(KErrNotSupported);
   288  
   289  	TLogFile log;
   290  	TPckg<TLogFile> logPckg(log);
   291  	aMessage.ReadL(0,logPckg);
   292  	if (log.Directory().Length()<=0)
   293         {
   294         aMessage.Panic(KFLoggerServerName,ELogDirectoryNameDoesNotExist);
   295         User::Leave(KErrMessagePanic);
   296         }
   297     
   298     if (log.Name().Length()<=0)
   299         {
   300         aMessage.Panic(KFLoggerServerName,ELogFileNameDoesNotExist);
   301         User::Leave(KErrMessagePanic);
   302         }
   303  
   304  //	TBuf8<KLogBufferSize> buf;
   305  	TBuf8<1600> buf;
   306  	if (func==EWriteLog || func==ECreateWriteAndCloseLog)
   307  	    {
   308  		aMessage.ReadL(1,buf);
   309  	    }
   310  
   311  	switch (func)
   312  		{
   313  	case ECreateLog:
   314  		OpenLogL(log);
   315  		aMessage.WriteL(0,logPckg);
   316  		break;
   317  
   318  	case EWriteLog:
   319  		iLoggerManager->WriteToLogL(log,buf);
   320  		break;
   321  
   322  	case ECloseLog:
   323  		CloseLog(log);
   324  		break;
   325  
   326  	case ECreateWriteAndCloseLog:
   327   		{
   328   		OpenLogL(log); // Ok to leave here; assume that log not left open
   329  		TInt rc = aMessage.Write(0,logPckg);
   330   		if (rc == KErrNone && log.Valid())
   331   			TRAP(rc,iLoggerManager->WriteToLogL(log,buf));
   332     		CloseLog(log);
   333   		User::LeaveIfError(rc);
   334     		break;
   335   		}
   336  
   337  	default:
   338  		User::Leave(KErrNotSupported);
   339  		break;
   340  		}
   341  	}
   342  
   343 
   344 void CFileLogSession::OpenLogL(TLogFile& aLogFile)
   345 /**
   346 Opens log file
   347 
   348 @param aLogFile Log file name
   349 */
   350 	{
   351 
   352 	iOpenLogFiles->AppendL(aLogFile);
   353 	iLoggerManager->FindOrCreateLogL(aLogFile);
   354 	}
   355 
   356 void CFileLogSession::CloseLog(TLogFile& aLogFile)
   357 /**
   358 Closes the log file
   359 
   360 @param aLogFile Log file name
   361 */
   362 	{
   363 
   364 	iLoggerManager->CloseLog(aLogFile);
   365 	TInt count=iOpenLogFiles->Count();
   366 	TInt i=0;
   367 	for (i=0; i<count; i++)
   368 		{
   369 		if (iOpenLogFiles->At(i)==aLogFile)
   370 			{
   371 			iOpenLogFiles->Delete(i,1);
   372 			break;
   373 			}
   374 		}	
   375 
   376 	__ASSERT_DEBUG(i<=count, User::Invariant());
   377 	}
   378