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_crestrictedaudiooutputdata.h"
23 #include "t_ctelephonyaudioroutingdata.h"
24 #include "t_caudioinputdata.h"
25 #include "t_caudiooutputdata.h"
28 /** Object wrappers literals */
29 _LIT(KT_CMMFDevSound, "CMMFDevSound");
30 _LIT(KT_CRestrictedAudioOutput, "CRestrictedAudioOutput");
31 _LIT(KT_CTelephonyAudioRouting, "CTelephonyAudioRouting");
32 _LIT(KT_CAudioInput, "CAudioInput");
33 _LIT(KT_CAudioOutput, "CAudioOutput");
34 _LIT(KApplicationName,"AccServer.exe");
35 _LIT(KPROCESSNAME, "*AccServer*");
42 * Same code for Secure and non-secure variants
43 * Called inside the MainL() function to create and start the
44 * CTestServer derived server.
45 * @return - Instance of the test server
47 CT_DevSoundServer* CT_DevSoundServer::NewL()
49 CT_DevSoundServer* server = new (ELeave) CT_DevSoundServer();
50 CleanupStack::PushL(server);
52 server->DoCmdutilStartApp();
53 CleanupStack::Pop(server);
59 * Much simpler, uses the new Rendezvous() call to sync with the client
63 #if (defined __DATA_CAGING__)
64 RProcess().DataCaging(RProcess::EDataCagingOn);
65 RProcess().SecureApi(RProcess::ESecureApiOn);
67 CActiveScheduler* sched = NULL;
68 sched = new(ELeave) CActiveScheduler;
69 CActiveScheduler::Install(sched);
70 CT_DevSoundServer* server = NULL;
72 // Create the CTestServer derived server
73 TRAPD(err, server = CT_DevSoundServer::NewL());
76 // Sync with the client and enter the active scheduler
77 RProcess::Rendezvous(KErrNone);
88 * Process entry point. Called by client using RProcess API
89 * @return - Standard Epoc error code on process exit
91 GLDEF_C TInt E32Main()
94 CTrapCleanup* cleanup = CTrapCleanup::New();
100 #if (defined TRAP_IGNORE)
101 TRAP_IGNORE(MainL());
111 * Creates an instance of CDataWrapper that wraps a CT_CMMFDevSoundData object
112 * @return wrapper - a CDataWrapper instance that wraps the CT_CMMFDevSoundData object
114 CDataWrapper* CT_DevSoundServer::CT_DevSoundBlock::CreateDataL(const TDesC& aData)
116 CDataWrapper* wrapper = NULL;
118 if (KT_CMMFDevSound() == aData)
120 wrapper = CT_CMMFDevSoundData::NewL();
122 else if (KT_CRestrictedAudioOutput() == aData)
124 wrapper = CT_CRestrictedAudioOutputData::NewL();
126 else if (KT_CTelephonyAudioRouting() == aData)
128 wrapper = CT_CTelephonyAudioRoutingData::NewL();
130 else if(KT_CAudioInput() == aData)
132 wrapper = CT_CAudioInputData::NewL();
134 else if(KT_CAudioOutput() == aData)
136 wrapper = CT_CAudioOutputData::NewL();
145 * Start the accessories server
146 * @return err Symbian error code. KErrNone if successful
148 void CT_DevSoundServer::DoCmdutilStartApp()
152 TFullName processName;
153 TFindProcess findProcess(KPROCESSNAME);
154 findProcess.Next(processName);
155 if (processName != KNullDesC)
160 err = process.Create(KApplicationName,KCmdName);
161 // start the process running! Don't forget this.
164 process.Resume(); //start .exe application
166 process.Close(); // Closes the handle, not the process.