os/persistentdata/persistentstorage/dbms/SPConv/cn_main.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-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
// E32Main(), DoMainL() implementations
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <f32file.h>
sl@0
    19
#include "D32Assert.h"
sl@0
    20
#include "cn_main.h"
sl@0
    21
#include "cn_cmdparse.h"
sl@0
    22
#include "cn_util.h"
sl@0
    23
#include "cn_proc.h"
sl@0
    24
sl@0
    25
/**
sl@0
    26
It will be used for parsed command line arguments.
sl@0
    27
@internalComponent
sl@0
    28
*/
sl@0
    29
static TCmdLinePrm TheCmdLinePrm;
sl@0
    30
sl@0
    31
/**
sl@0
    32
DoMainL() parses the command line, fills TheCmdLinePrm struct, creates the appropriate
sl@0
    33
command line execution object and calls its RunL() method.
sl@0
    34
@internalComponent
sl@0
    35
*/
sl@0
    36
static void DoMainL()
sl@0
    37
	{
sl@0
    38
	RFs fileSession;
sl@0
    39
	__LEAVE_IF_ERROR(fileSession.Connect());
sl@0
    40
	CleanupClosePushL(fileSession);
sl@0
    41
sl@0
    42
	CCommandLineArguments* cmdLineParser = CCommandLineArguments::NewLC();
sl@0
    43
sl@0
    44
	TSPConvUtil::ParseL(*cmdLineParser, TheCmdLinePrm);
sl@0
    45
	TSPConvUtil::ConstructBinFileNameL(TheCmdLinePrm.iBinFile);
sl@0
    46
sl@0
    47
	CCmdProcessor* proc = TCmdProcessorFactory::NewLC(fileSession, TheCmdLinePrm);
sl@0
    48
	proc->RunL();
sl@0
    49
sl@0
    50
	CleanupStack::PopAndDestroy(3, &fileSession);//cmdLineParser, fileSession, proc
sl@0
    51
	}
sl@0
    52
sl@0
    53
/**
sl@0
    54
The main function of DbSpConv tool, which can be used to load and parse a text policy file
sl@0
    55
and store it in a binary policy file, which can be used by the DBMS server.
sl@0
    56
*/
sl@0
    57
TInt E32Main()
sl@0
    58
	{
sl@0
    59
	__UHEAP_MARK;
sl@0
    60
sl@0
    61
	CTrapCleanup* trapCleanup = CTrapCleanup::New();
sl@0
    62
	__ASSERT_ALWAYS(trapCleanup != NULL, User::Invariant());
sl@0
    63
	
sl@0
    64
	TRAPD(err, ::DoMainL());
sl@0
    65
sl@0
    66
	if(err != KErrNone)
sl@0
    67
		{
sl@0
    68
		_LIT(KText, "Security policy tool failed. Error code = %d\n");
sl@0
    69
		TSPConvUtil::Print(KText, err);
sl@0
    70
		}
sl@0
    71
	else
sl@0
    72
		{
sl@0
    73
		_LIT(KText, "\"%S\"->\"%S\" : OK!\n");
sl@0
    74
		TSPConvUtil::Print(KText, TheCmdLinePrm.iTxtFile, TheCmdLinePrm.iBinFile);
sl@0
    75
		}
sl@0
    76
sl@0
    77
	delete trapCleanup;
sl@0
    78
sl@0
    79
	__UHEAP_MARKEND;
sl@0
    80
sl@0
    81
	return err;
sl@0
    82
    }