os/persistentdata/persistentstorage/sql/SRC/Common/SqlSrvStartup.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-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 #include "SqlSrvStartup.h"
    17 
    18 /**
    19 Starts the SQL server process.
    20 
    21 @return KErrNone The server started successfully
    22 @return KErrAlreadyExists The server already started
    23 @return Other system-wide error code
    24 
    25 @internalComponent
    26 */	
    27 TInt StartSqlServer()
    28 	{
    29 	const TUidType serverUid(KNullUid, KNullUid, KSqlSrvUid3);
    30 	RProcess server;
    31 	TInt err = server.Create(KSqlSrvImg, KNullDesC, serverUid);
    32 	if(err != KErrNone)
    33 		{
    34 		return err;
    35 		}
    36 	TRequestStatus stat;
    37 	server.Rendezvous(stat);
    38 	if(stat != KRequestPending)
    39 		{
    40 		server.Kill(0);		// abort startup
    41 		}
    42 	else
    43 		{
    44 		server.Resume();	// logon OK - start the server
    45 		}
    46 	User::WaitForRequest(stat);		// wait for start or death
    47 	// we can't use the 'exit reason' if the server panicked as this
    48 	// is the panic 'reason' and may be '0' which cannot be distinguished
    49 	// from KErrNone
    50 	err = (server.ExitType() == EExitPanic) ? KErrGeneral : stat.Int();
    51 	server.Close();
    52 	return err;
    53 	}
    54