os/persistentdata/persistentstorage/dbms/SPConv/cn_txt2bin.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
// CSPTxt2Bin class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "cn_main.h"
sl@0
    19
#include "cn_util.h"
sl@0
    20
#include "cn_txt2bin.h"
sl@0
    21
#include "SC_TextIn.h"
sl@0
    22
#include "SC_StrmOut.h"
sl@0
    23
sl@0
    24
using namespace DBSC;
sl@0
    25
sl@0
    26
/**
sl@0
    27
CSPTxt2Bin::RunL() implements pure virtual CCmdProcessor::RunL().
sl@0
    28
It opens the input text policy file and creates in-memory presentation of the 
sl@0
    29
policies found there. Then it stores the policies in a binary policy file,
sl@0
    30
which may be used then by the DBMS server.
sl@0
    31
CSPTxt2Bin::RunL() uses CPDTextLoader class to load policies for the text policy file
sl@0
    32
and TPDStreamPersister class to store them in a binary policy file.
sl@0
    33
@leave System-wide error codes in case of failure
sl@0
    34
@see CCmdProcessor::RunL()
sl@0
    35
@see CPDTextLoader
sl@0
    36
@see TPDStreamPersister
sl@0
    37
*/
sl@0
    38
void CSPTxt2Bin::RunL()
sl@0
    39
	{
sl@0
    40
	CPDTextLoader* textLoader = CPDTextLoader::NewLC(iFs, iCmdLinePrm.iTxtFile);
sl@0
    41
sl@0
    42
#ifdef __DBDUMP__
sl@0
    43
	TBuf<KMaxFileName> dumpFileName;
sl@0
    44
	dumpFileName = iCmdLinePrm.iTxtFile;
sl@0
    45
	_LIT(KExt, "D");
sl@0
    46
	dumpFileName += KExt;
sl@0
    47
	(void)iFs.Delete(dumpFileName);
sl@0
    48
#endif//__DBDUMP__
sl@0
    49
sl@0
    50
	TUid domainUid = TSPConvUtil::UidFromFileNameL(iCmdLinePrm.iBinFile);
sl@0
    51
	CPolicyDomain* policyDomain = CPolicyDomain::NewLC(domainUid, *textLoader);
sl@0
    52
sl@0
    53
#ifdef __DBDUMP__
sl@0
    54
	RFile dumpFile;
sl@0
    55
	CleanupClosePushL(dumpFile);
sl@0
    56
	__LEAVE_IF_ERROR(dumpFile.Replace(iFs, dumpFileName, EFileWrite));
sl@0
    57
	policyDomain->Dump(dumpFile);
sl@0
    58
	CleanupStack::PopAndDestroy(&dumpFile);
sl@0
    59
#endif//__DBDUMP__
sl@0
    60
sl@0
    61
	RFileWriteStream streamOut;
sl@0
    62
	CleanupClosePushL(streamOut);
sl@0
    63
	__LEAVE_IF_ERROR(streamOut.Replace(iFs, iCmdLinePrm.iBinFile, EFileWrite));
sl@0
    64
	TPDStreamPersister streamPersister(streamOut);
sl@0
    65
	policyDomain->ExternalizeL(streamPersister);
sl@0
    66
	CleanupStack::PopAndDestroy(&streamOut);
sl@0
    67
sl@0
    68
	CleanupStack::PopAndDestroy(policyDomain);
sl@0
    69
	CleanupStack::PopAndDestroy(textLoader);
sl@0
    70
	}
sl@0
    71
sl@0
    72
/**
sl@0
    73
*/
sl@0
    74
inline CSPTxt2Bin::CSPTxt2Bin(RFs& aFs, const TCmdLinePrm& aCmdLinePrm) :
sl@0
    75
	CCmdProcessor(aFs, aCmdLinePrm)
sl@0
    76
	{
sl@0
    77
	}
sl@0
    78
sl@0
    79
/**
sl@0
    80
*/
sl@0
    81
CSPTxt2Bin::~CSPTxt2Bin()
sl@0
    82
	{
sl@0
    83
	}
sl@0
    84
sl@0
    85
/**
sl@0
    86
Standard phase-one CSPTxt2Bin factory method.
sl@0
    87
@param aFs File server session
sl@0
    88
@param aCmdLinePrm Parsed command line arguments: requested action, input and output file paths
sl@0
    89
@return A pointer to successfully created CSPTxt2Bin instance.
sl@0
    90
@leave KErrNoMemory - not enough memory
sl@0
    91
@leave KErrNotFound - input file not found
sl@0
    92
*/
sl@0
    93
CSPTxt2Bin* CSPTxt2Bin::NewLC(RFs& aFs, const TCmdLinePrm& aCmdLinePrm)
sl@0
    94
	{
sl@0
    95
	__ASSERT(aCmdLinePrm.iAction == TCmdLinePrm::ETxt2Bin);
sl@0
    96
	CSPTxt2Bin* self = new (ELeave) CSPTxt2Bin(aFs, aCmdLinePrm);
sl@0
    97
	CleanupStack::PushL(self);
sl@0
    98
	self->ConstructL();
sl@0
    99
	return self;
sl@0
   100
	}
sl@0
   101
sl@0
   102
/**
sl@0
   103
Standard phase-two CSPTxt2Bin construction method.
sl@0
   104
*/
sl@0
   105
void CSPTxt2Bin::ConstructL()
sl@0
   106
	{
sl@0
   107
	if(!TSPConvUtil::FileExists(iFs, iCmdLinePrm.iTxtFile))
sl@0
   108
		{
sl@0
   109
		_LIT(KText, "Text file \"%S\" not found\n");
sl@0
   110
		TSPConvUtil::Print(KText, iCmdLinePrm.iTxtFile);
sl@0
   111
		__LEAVE(KErrNotFound);
sl@0
   112
		}
sl@0
   113
	}