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 |
// DBMS - security policy file tool
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <s32file.h>
|
sl@0
|
19 |
#include "cn_main.h"
|
sl@0
|
20 |
#include "cn_bin2txt.h"
|
sl@0
|
21 |
#include "cn_util.h"
|
sl@0
|
22 |
#include "SC_StrmIn.h"
|
sl@0
|
23 |
#include "SC_TextOut.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
using namespace DBSC;
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
CSPBin2Txt::RunL() implements pure virtual CCmdProcessor::RunL().
|
sl@0
|
29 |
It opens the input binary policy file and creates in-memory presentation of the
|
sl@0
|
30 |
policies found there. Then it stores the policies in a text file (in human readable format).
|
sl@0
|
31 |
CSPBin2Txt::RunL() uses TPDStreamLoader class to load policies for the binary file
|
sl@0
|
32 |
and CPDTextPersister class to store them in a text file.
|
sl@0
|
33 |
@leave System-wide error codes in case of failure
|
sl@0
|
34 |
@see CCmdProcessor::RunL()
|
sl@0
|
35 |
@see TPDStreamLoader
|
sl@0
|
36 |
@see CPDTextPersister
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
void CSPBin2Txt::RunL()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
RFileReadStream streamIn;
|
sl@0
|
41 |
CleanupClosePushL(streamIn);
|
sl@0
|
42 |
__LEAVE_IF_ERROR(streamIn.Open(iFs, iCmdLinePrm.iBinFile, EFileRead));
|
sl@0
|
43 |
|
sl@0
|
44 |
TPDStreamLoader streamLoader(streamIn);
|
sl@0
|
45 |
|
sl@0
|
46 |
TUid domainUid = TSPConvUtil::UidFromFileNameL(iCmdLinePrm.iBinFile);
|
sl@0
|
47 |
|
sl@0
|
48 |
CPolicyDomain* policyDomain = CPolicyDomain::NewLC(domainUid, streamLoader);
|
sl@0
|
49 |
|
sl@0
|
50 |
CPDTextPersister* textPersister = CPDTextPersister::NewLC(iFs, iCmdLinePrm.iTxtFile);
|
sl@0
|
51 |
policyDomain->ExternalizeL(*textPersister);
|
sl@0
|
52 |
CleanupStack::PopAndDestroy(textPersister);
|
sl@0
|
53 |
|
sl@0
|
54 |
CleanupStack::PopAndDestroy(policyDomain);
|
sl@0
|
55 |
CleanupStack::PopAndDestroy(&streamIn);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
CSPBin2Txt::~CSPBin2Txt()
|
sl@0
|
61 |
{
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
inline CSPBin2Txt::CSPBin2Txt(RFs& aFs, const TCmdLinePrm& aCmdLinePrm) :
|
sl@0
|
67 |
CCmdProcessor(aFs, aCmdLinePrm)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
Standard phase-one CSPBin2Txt factory method.
|
sl@0
|
73 |
@param aFs File server session
|
sl@0
|
74 |
@param aCmdLinePrm Parsed command line arguments: requested action, input and output file paths
|
sl@0
|
75 |
@return A pointer to successfully created CSPBin2Txt instance.
|
sl@0
|
76 |
@leave KErrNoMemory - not enough memory
|
sl@0
|
77 |
@leave KErrNotFound - input file not found
|
sl@0
|
78 |
@leave KErrAlreadyExists - output file already exists
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
CSPBin2Txt* CSPBin2Txt::NewLC(RFs& aFs, const TCmdLinePrm& aCmdLinePrm)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
__ASSERT(aCmdLinePrm.iAction == TCmdLinePrm::EBin2Txt);
|
sl@0
|
83 |
CSPBin2Txt* self = new (ELeave) CSPBin2Txt(aFs, aCmdLinePrm);
|
sl@0
|
84 |
CleanupStack::PushL(self);
|
sl@0
|
85 |
self->ConstructL();
|
sl@0
|
86 |
return self;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
/**
|
sl@0
|
90 |
Standard phase-two CSPBin2Txt construction method.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
void CSPBin2Txt::ConstructL()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
__ASSERT(iCmdLinePrm.iTxtFile.Length() > 0);
|
sl@0
|
95 |
__ASSERT(iCmdLinePrm.iBinFile.Length() > 0);
|
sl@0
|
96 |
if(!TSPConvUtil::FileExists(iFs, iCmdLinePrm.iBinFile))
|
sl@0
|
97 |
{
|
sl@0
|
98 |
_LIT(KText, "\"UID\" file \"%S\" not found\n");
|
sl@0
|
99 |
TSPConvUtil::Print(KText, iCmdLinePrm.iBinFile);
|
sl@0
|
100 |
__LEAVE(KErrNotFound);
|
sl@0
|
101 |
}
|
sl@0
|
102 |
if(TSPConvUtil::FileExists(iFs, iCmdLinePrm.iTxtFile))
|
sl@0
|
103 |
{
|
sl@0
|
104 |
_LIT(KText, "File \"%S\" already exists!\n");
|
sl@0
|
105 |
TSPConvUtil::Print(KText, iCmdLinePrm.iTxtFile);
|
sl@0
|
106 |
__LEAVE(KErrAlreadyExists);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
}
|