cryptoservices/filebasedcertificateandkeystores/source/generic/server/fstokenutil.h
/*
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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:
*
*/
/**
@file
@internalTechnology
*/
#ifndef __FSTOKENUTIL_H__
#define __FSTOKENUTIL_H__
#include "tokentypesenum.h"
#include "fstokencliserv.h"
/// Panic the client
void PanicClient(const RMessage2& aMessage, ETokenTypeServerPanic aPanic);
/// Panic the server
void PanicServer(ETokenTypeServerPanic aPanicCode);
/// Assert macro
#define assert(TEST, PANIC) __ASSERT_ALWAYS(TEST, PanicServer(PANIC))
class RFs;
/// Length of filename buffer for store path
const TUint KMaxFilenameLength = 40;
/**
* Files utilities used by all servers.
*/
struct FileUtils
{
/// Determine whether a file exists
static TBool ExistsL(RFs& aFs, const TDesC& aFile);
/// Ensure all directories in a file's path exist, creating them if not
static void EnsurePathL(RFs& aFs, const TDesC& aFile);
/// Copy a file from one location to another
static void CopyL(RFs& aFs, const TDesC& aSouce, const TDesC& aDest);
/// Construct a filename in the server's private area
static void MakePrivateFilenameL(RFs& aFs, const TDesC& aLeafName, TDes& aNameOut);
/// Construct a filename in the server's private area in ROM
static void MakePrivateROMFilenameL(RFs& aFs, const TDesC& aLeafName, TDes& aNameOut);
};
#endif // __FSTOKENUTIL_H__