sl@0
|
1 |
// Copyright (c) 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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <f32file.h>
|
sl@0
|
17 |
#include <e32debug.h>
|
sl@0
|
18 |
|
sl@0
|
19 |
//This function is used in the test code to kill ECOMSERVER
|
sl@0
|
20 |
//processes (or some other) when they leftover and may problem in ECOMSERVERTEST
|
sl@0
|
21 |
static TInt KillProcess(const TDesC& aProcessName)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
TFullName name;
|
sl@0
|
24 |
|
sl@0
|
25 |
RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
|
sl@0
|
26 |
|
sl@0
|
27 |
TBuf<64> pattern(aProcessName);
|
sl@0
|
28 |
TInt length = pattern.Length();
|
sl@0
|
29 |
pattern += _L("*");
|
sl@0
|
30 |
TFindProcess procFinder(pattern);
|
sl@0
|
31 |
|
sl@0
|
32 |
while(procFinder.Next(name) == KErrNone)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
if(name.Length() > length)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
//If found name is a string containing aProcessName string.
|
sl@0
|
37 |
TChar c(name[length]);
|
sl@0
|
38 |
if(c.IsAlphaDigit() || c == TChar('_') || c == TChar('-'))
|
sl@0
|
39 |
{
|
sl@0
|
40 |
//If the found name is other valid application name starting with aProcessName string.
|
sl@0
|
41 |
RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
|
sl@0
|
42 |
continue;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
}
|
sl@0
|
45 |
RProcess proc;
|
sl@0
|
46 |
if(proc.Open(name) == KErrNone)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
proc.Kill(0);
|
sl@0
|
49 |
RDebug::Print(_L("\"%S\" process killed.\n"), &name);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
proc.Close();
|
sl@0
|
52 |
}
|
sl@0
|
53 |
return KErrNone;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
GLDEF_C TInt E32Main()
|
sl@0
|
57 |
{
|
sl@0
|
58 |
TFileName name;
|
sl@0
|
59 |
User::CommandLine(name);
|
sl@0
|
60 |
return KillProcess(name);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|