1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/SPConv/cn_main.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,82 @@
1.4 +// Copyright (c) 2004-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 +// E32Main(), DoMainL() implementations
1.18 +//
1.19 +//
1.20 +
1.21 +#include <f32file.h>
1.22 +#include "D32Assert.h"
1.23 +#include "cn_main.h"
1.24 +#include "cn_cmdparse.h"
1.25 +#include "cn_util.h"
1.26 +#include "cn_proc.h"
1.27 +
1.28 +/**
1.29 +It will be used for parsed command line arguments.
1.30 +@internalComponent
1.31 +*/
1.32 +static TCmdLinePrm TheCmdLinePrm;
1.33 +
1.34 +/**
1.35 +DoMainL() parses the command line, fills TheCmdLinePrm struct, creates the appropriate
1.36 +command line execution object and calls its RunL() method.
1.37 +@internalComponent
1.38 +*/
1.39 +static void DoMainL()
1.40 + {
1.41 + RFs fileSession;
1.42 + __LEAVE_IF_ERROR(fileSession.Connect());
1.43 + CleanupClosePushL(fileSession);
1.44 +
1.45 + CCommandLineArguments* cmdLineParser = CCommandLineArguments::NewLC();
1.46 +
1.47 + TSPConvUtil::ParseL(*cmdLineParser, TheCmdLinePrm);
1.48 + TSPConvUtil::ConstructBinFileNameL(TheCmdLinePrm.iBinFile);
1.49 +
1.50 + CCmdProcessor* proc = TCmdProcessorFactory::NewLC(fileSession, TheCmdLinePrm);
1.51 + proc->RunL();
1.52 +
1.53 + CleanupStack::PopAndDestroy(3, &fileSession);//cmdLineParser, fileSession, proc
1.54 + }
1.55 +
1.56 +/**
1.57 +The main function of DbSpConv tool, which can be used to load and parse a text policy file
1.58 +and store it in a binary policy file, which can be used by the DBMS server.
1.59 +*/
1.60 +TInt E32Main()
1.61 + {
1.62 + __UHEAP_MARK;
1.63 +
1.64 + CTrapCleanup* trapCleanup = CTrapCleanup::New();
1.65 + __ASSERT_ALWAYS(trapCleanup != NULL, User::Invariant());
1.66 +
1.67 + TRAPD(err, ::DoMainL());
1.68 +
1.69 + if(err != KErrNone)
1.70 + {
1.71 + _LIT(KText, "Security policy tool failed. Error code = %d\n");
1.72 + TSPConvUtil::Print(KText, err);
1.73 + }
1.74 + else
1.75 + {
1.76 + _LIT(KText, "\"%S\"->\"%S\" : OK!\n");
1.77 + TSPConvUtil::Print(KText, TheCmdLinePrm.iTxtFile, TheCmdLinePrm.iBinFile);
1.78 + }
1.79 +
1.80 + delete trapCleanup;
1.81 +
1.82 + __UHEAP_MARKEND;
1.83 +
1.84 + return err;
1.85 + }