os/ossrv/genericservices/taskscheduler/SCHSVR/SSCH_SVR.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// SCH_SVR.CPP
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// User includes
sl@0
    19
#include "SSCH_STD.H"
sl@0
    20
#include "SchLogger.h"
sl@0
    21
#include "SCHMAN.H"
sl@0
    22
#include "CSCHCODE.H"
sl@0
    23
#include "SCHEXE.H"
sl@0
    24
#include "SchSSAMan.h"
sl@0
    25
sl@0
    26
extern const BSUL::TClientMessageServerData KServerData;
sl@0
    27
sl@0
    28
CSchServer* CSchServer::NewLC()
sl@0
    29
	{
sl@0
    30
	CSchServer* self=new(ELeave) CSchServer(EPriority);
sl@0
    31
	CleanupStack::PushL(self);
sl@0
    32
	self->ConstructL();
sl@0
    33
	return self;
sl@0
    34
	}
sl@0
    35
sl@0
    36
CSchServer::CSchServer(TInt aPriority)
sl@0
    37
	: CServer2(aPriority)
sl@0
    38
	{
sl@0
    39
	}
sl@0
    40
sl@0
    41
CSchServer::~CSchServer()
sl@0
    42
	{
sl@0
    43
	delete iTaskScheduler;
sl@0
    44
	delete iSSAMgr;
sl@0
    45
sl@0
    46
#ifdef __SCHLOGGING__
sl@0
    47
	delete iTheLog;
sl@0
    48
#endif
sl@0
    49
	}
sl@0
    50
sl@0
    51
void CSchServer::ConstructL()
sl@0
    52
	{
sl@0
    53
#ifdef __SCHLOGGING__
sl@0
    54
	iTheLog = CSheduleServerLog::NewL(_L("SchSvr"));
sl@0
    55
	Dll::SetTls(iTheLog);
sl@0
    56
#endif
sl@0
    57
sl@0
    58
 	// Create server storage path
sl@0
    59
 	RFs fs;
sl@0
    60
 	User::LeaveIfError(fs.Connect());
sl@0
    61
sl@0
    62
	TInt err = fs.CreatePrivatePath(RFs::GetSystemDrive());
sl@0
    63
sl@0
    64
	if(err != KErrNone && err != KErrAlreadyExists)
sl@0
    65
		User::Leave(err);
sl@0
    66
	
sl@0
    67
	fs.Close();
sl@0
    68
sl@0
    69
	iTaskScheduler = CTaskScheduler::NewL();
sl@0
    70
sl@0
    71
#ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
sl@0
    72
	iSSAMgr = new(ELeave) CSchStartupStateMgr(KDmHierarchyIdStartup, KSM2OSServicesDomain3);
sl@0
    73
#else
sl@0
    74
	iSSAMgr = new(ELeave) CSchStartupStateMgr(KDmHierarchyIdStartup, KBaseServicesDomain3);
sl@0
    75
#endif //SYMBIAN_SYSTEM_STATE_MANAGEMENT
sl@0
    76
sl@0
    77
	iSSAMgr->RegisterObserverL(iTaskScheduler);
sl@0
    78
	iSSAMgr->InitialiseL();
sl@0
    79
	
sl@0
    80
	//Initialise message framework
sl@0
    81
	BSUL::CClientMessage::InitialiseFrameworkL(KServerData);
sl@0
    82
sl@0
    83
	StartL(KSchSvrName);
sl@0
    84
	}
sl@0
    85
sl@0
    86
CSession2* CSchServer::NewSessionL(const TVersion &aVersion, const RMessage2& /*aMessage*/) const
sl@0
    87
//
sl@0
    88
// Create a new client for this server.
sl@0
    89
//
sl@0
    90
	{
sl@0
    91
	TVersion v(KESchSvrMajorVersionNumber,KESchSvrMinorVersionNumber,KESchSvrBuildVersionNumber);
sl@0
    92
	TBool r=User::QueryVersionSupported(v,aVersion);
sl@0
    93
	if (r==EFalse)
sl@0
    94
		User::Leave(KErrNotSupported);
sl@0
    95
	return new(ELeave) CSchSession(*iTaskScheduler);
sl@0
    96
	}
sl@0
    97
sl@0
    98
// Perform all server initialisation, in particular creation of the
sl@0
    99
// scheduler and server and then run the scheduler
sl@0
   100
static void RunSchedulerL()
sl@0
   101
	{
sl@0
   102
	// naming the server thread after the server helps to debug panics
sl@0
   103
	User::LeaveIfError(User::RenameThread(KSchSvrName));
sl@0
   104
	User::LeaveIfError(User::SetProcessCritical(User::ESystemCritical));
sl@0
   105
	RProcess().SetPriority(EPriorityHigh);
sl@0
   106
sl@0
   107
	// create and install the active scheduler we need
sl@0
   108
	CActiveScheduler* s=new(ELeave) CActiveScheduler;
sl@0
   109
	CleanupStack::PushL(s);
sl@0
   110
	CActiveScheduler::Install(s);
sl@0
   111
	//
sl@0
   112
	// create the server (leave it on the cleanup stack)
sl@0
   113
	CSchServer::NewLC();
sl@0
   114
	//
sl@0
   115
	// Initialisation complete, now signal the client
sl@0
   116
	RProcess::Rendezvous(KErrNone);
sl@0
   117
	//
sl@0
   118
	// Ready to run
sl@0
   119
	CActiveScheduler::Start();
sl@0
   120
	//
sl@0
   121
	// Cleanup the server and scheduler
sl@0
   122
	CleanupStack::PopAndDestroy(2);
sl@0
   123
	}
sl@0
   124
sl@0
   125
EXPORT_C TInt RunScheduler()
sl@0
   126
//
sl@0
   127
// Run the scheduler
sl@0
   128
//
sl@0
   129
	{
sl@0
   130
	__UHEAP_MARK;
sl@0
   131
	//
sl@0
   132
	CTrapCleanup* cleanup=CTrapCleanup::New();
sl@0
   133
	TInt r=KErrNoMemory;
sl@0
   134
	if (cleanup)
sl@0
   135
		{
sl@0
   136
		TRAP(r,RunSchedulerL());
sl@0
   137
		delete cleanup;
sl@0
   138
		}
sl@0
   139
	//
sl@0
   140
	__UHEAP_MARKEND;
sl@0
   141
	return r;
sl@0
   142
	}
sl@0
   143
sl@0
   144