os/persistentdata/persistentstorage/centralrepository/test/t_processkillprocess.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/test/t_processkillprocess.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,62 @@
1.4 +// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <f32file.h>
1.20 +#include <e32debug.h>
1.21 +
1.22 +//This function is used in the test code to kill ECOMSERVER
1.23 +//processes (or some other) when they leftover and may problem in ECOMSERVERTEST
1.24 +static TInt KillProcess(const TDesC& aProcessName)
1.25 + {
1.26 + TFullName name;
1.27 +
1.28 + RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
1.29 +
1.30 + TBuf<64> pattern(aProcessName);
1.31 + TInt length = pattern.Length();
1.32 + pattern += _L("*");
1.33 + TFindProcess procFinder(pattern);
1.34 +
1.35 + while(procFinder.Next(name) == KErrNone)
1.36 + {
1.37 + if(name.Length() > length)
1.38 + {
1.39 + //If found name is a string containing aProcessName string.
1.40 + TChar c(name[length]);
1.41 + if(c.IsAlphaDigit() || c == TChar('_') || c == TChar('-'))
1.42 + {
1.43 + //If the found name is other valid application name starting with aProcessName string.
1.44 + RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
1.45 + continue;
1.46 + }
1.47 + }
1.48 + RProcess proc;
1.49 + if(proc.Open(name) == KErrNone)
1.50 + {
1.51 + proc.Kill(0);
1.52 + RDebug::Print(_L("\"%S\" process killed.\n"), &name);
1.53 + }
1.54 + proc.Close();
1.55 + }
1.56 + return KErrNone;
1.57 + }
1.58 +
1.59 +GLDEF_C TInt E32Main()
1.60 + {
1.61 + TFileName name;
1.62 + User::CommandLine(name);
1.63 + return KillProcess(name);
1.64 + }
1.65 +