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_devsoundserver.h"
21 #include "t_cmmfdevsounddata.h"
22 #include "t_crepositorydata.h"
25 /** Object wrappers literals */
26 _LIT(KT_CMMFDevSound, "CMMFDevSound");
27 _LIT(KT_CRepository, "CRepository");
28 _LIT(KApplicationName,"AccServer.exe");
29 _LIT(KPROCESSNAME, "*AccServer*");
35 * Same code for Secure and non-secure variants
36 * Called inside the MainL() function to create and start the
37 * CTestServer derived server.
38 * @return - Instance of the test server
40 CT_DevSoundServer* CT_DevSoundServer::NewL()
42 CT_DevSoundServer* server = new (ELeave) CT_DevSoundServer();
43 CleanupStack::PushL(server);
45 server->DoCmdutilStartApp();
46 CleanupStack::Pop(server);
52 * Much simpler, uses the new Rendezvous() call to sync with the client
56 #if (defined __DATA_CAGING__)
57 RProcess().DataCaging(RProcess::EDataCagingOn);
58 RProcess().SecureApi(RProcess::ESecureApiOn);
60 CActiveScheduler* sched = NULL;
61 sched = new(ELeave) CActiveScheduler;
62 CActiveScheduler::Install(sched);
63 CT_DevSoundServer* server = NULL;
65 // Create the CTestServer derived server
66 TRAPD(err, server = CT_DevSoundServer::NewL());
69 // Sync with the client and enter the active scheduler
70 RProcess::Rendezvous(KErrNone);
81 * Process entry point. Called by client using RProcess API
82 * @return - Standard Epoc error code on process exit
84 GLDEF_C TInt E32Main()
87 CTrapCleanup* cleanup = CTrapCleanup::New();
93 #if (defined TRAP_IGNORE)
104 * Creates an instance of CDataWrapper that wraps a CT_CMMFDevSoundData object
105 * @return wrapper - a CDataWrapper instance that wraps the CT_CMMFDevSoundData object
107 CDataWrapper* CT_DevSoundServer::CT_DevSoundBlock::CreateDataL(const TDesC& aData)
109 CDataWrapper* wrapper = NULL;
111 if (KT_CMMFDevSound() == aData)
113 wrapper = CT_CMMFDevSoundData::NewL();
115 else if (KT_CRepository() == aData)
117 wrapper = CT_CRepositoryData::NewL();
123 * Start the accessories server
124 * @return err Symbian error code. KErrNone if successful
126 void CT_DevSoundServer::DoCmdutilStartApp()
130 TFullName processName;
131 TFindProcess findProcess(KPROCESSNAME);
132 findProcess.Next(processName);
133 if (processName != KNullDesC)
138 err = process.Create(KApplicationName,KCmdName);
139 // start the process running! Don't forget this.
142 process.Resume(); //start .exe application
144 process.Close(); // Closes the handle, not the process.