Revert last code drop.
/*
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
* Resolves the protection status for a Java file.
* Protection checks include:
* - Java SuperD
*
*/
// INCLUDE FILES
#include <e32std.h>
#include <e32base.h> // CBase
#include <apmstd.h> // TDataType
#include <f32file.h> // RFs, RFile, CFileMan
#include <javasuperdparser.h>
#include "JavaProtectionResolver.h"
// EXTERNAL DATA STRUCTURES
// EXTERNAL FUNCTION PROTOTYPES
// CONSTANTS
// MACROS
// LOCAL CONSTANTS AND MACROS
#if defined (__WINS__)
//_LIT( KFileProtTempDir, "c:\\system\\temp\\fileprot_temp\\");
_LIT( KFileProtTempDir, "\x43:\\system\\temp\\fileprot_temp\\");
#else
//_LIT( KFileProtTempDir, "d:\\system\\temp\\fileprot_temp\\");
_LIT( KFileProtTempDir, "\x44:\\system\\temp\\fileprot_temp\\");
#endif
// MODULE DATA STRUCTURES
// LOCAL FUNCTION PROTOTYPES
// FORWARD DECLARATIONS
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// Factory
// -----------------------------------------------------------------------------
//
CJavaProtectionResolver* CJavaProtectionResolver::NewLC( RFs& aFs )
{
CJavaProtectionResolver* self = new ( ELeave ) CJavaProtectionResolver( aFs );
CleanupStack::PushL( self );
return self;
}
// -----------------------------------------------------------------------------
// C++ constructor
// -----------------------------------------------------------------------------
//
CJavaProtectionResolver::CJavaProtectionResolver( RFs& aFs ) :
iFs( aFs )
{
}
// -----------------------------------------------------------------------------
// Destructor
// -----------------------------------------------------------------------------
//
CJavaProtectionResolver::~CJavaProtectionResolver()
{
}
// -----------------------------------------------------------------------------
// CJavaProtectionResolver::CheckDRMStatus
// -----------------------------------------------------------------------------
//
TBool CJavaProtectionResolver::IsSuperDistributionPackageL( RFile& aFile )
{
TBool retVal( EFalse );
CFileMan* fileMan = CFileMan::NewL( iFs );
iFs.MkDir( KFileProtTempDir );
Java::CJavaSuperDParser* javaParser( NULL );
TRAPD( err, javaParser = Java::CJavaSuperDParser::NewL( iFs,
aFile,
KFileProtTempDir ) );
if ( !err )
{
retVal = ETrue;
}
delete javaParser;
/*TInt err =*/ fileMan->Delete( KFileProtTempDir /*, CFileMan::ERecurse*/ );
/*TInt err =*/ fileMan->RmDir( KFileProtTempDir );
delete fileMan;
return retVal;
}
// End of File