os/security/securityanddataprivacytools/securitytools/certapp/store--/s32file.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #ifndef __S32FILE_H__
     2 #define __S32FILE_H__/*
     3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     4 * All rights reserved.
     5 * This component and the accompanying materials are made available
     6 * under the terms of the License "Eclipse Public License v1.0"
     7 * which accompanies this distribution, and is available
     8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 *
    10 * Initial Contributors:
    11 * Nokia Corporation - initial contribution.
    12 *
    13 * Contributors:
    14 *
    15 * Description: 
    16 *
    17 */
    18 
    19 
    20 #include <e32base.h>
    21 #include <f32file.h>
    22 #include <s32strm.h>
    23 #include <fstream>
    24 #include <string>
    25 #include <memory>
    26 #include <map>
    27 
    28 /**
    29  * @file
    30  * @internalComponent
    31  */
    32 
    33 #define KPermanentFileStoreLayoutUid TUid::Uid(268435536)
    34 typedef TUint32 TStreamId;
    35 /** The value of the null stream ID. */
    36 const TUint32 KNullStreamIdValue=0;
    37 const TUint32 KMaxStreamIdValue=0xfffffff;
    38 const TUint32 KMaskStreamIdValue=0xfffffff;
    39 const TInt KShiftStreamIdValue=28;
    40 
    41 namespace store_private
    42 {
    43 };
    44 
    45 
    46 
    47 
    48 class CStreamStore
    49 	{
    50 public:
    51 	virtual ~CStreamStore();
    52 	inline TStreamId ExtendL();
    53 	IMPORT_C void Delete(TStreamId anId);
    54 	IMPORT_C void DeleteL(TStreamId anId);
    55 
    56 	virtual void CommitL() = 0;
    57 
    58 	//
    59 	// Internal store emulation functions
    60 	//
    61 	virtual store_private::MemStreamBuf *CreateStoreWriteStream() = 0;
    62 	virtual store_private::MemStreamBuf *CreateStoreReadStream(TStreamId aId) const = 0;
    63 	virtual bool Writable() const = 0;
    64 	};
    65 
    66 class CPersistentStore : public CStreamStore
    67 	{
    68 public:
    69 	TStreamId Root();
    70 	void SetRootL(TStreamId anId);
    71 protected:
    72 	TStreamId iRoot;
    73 	};
    74 
    75 class CFileStore : public CPersistentStore
    76 	{
    77 public:
    78 	IMPORT_C void SetTypeL(const TUidType& aType);
    79 	};
    80 
    81 
    82 class CPermanentFileStore : public CFileStore
    83 	{
    84 public:
    85 	static CFileStore *ReplaceLC(RFs &aFs, const TDesC &aName, TUint aFileMode);
    86 	static CPermanentFileStore* OpenLC(RFs& aFs, const TDesC& aName, TUint aFileMode);
    87 
    88 public:
    89 	//
    90 	// Internal store emulation functions
    91 	//
    92 	virtual store_private::MemStreamBuf *CreateStoreWriteStream();
    93 	virtual store_private::MemStreamBuf *CreateStoreReadStream(TStreamId aId) const;
    94 	virtual bool Writable() const;
    95 private:
    96 	CPermanentFileStore(const TDesC &aName, TUint aFileMode);
    97 	virtual ~CPermanentFileStore();
    98 	virtual void CommitL();
    99 
   100 	void ReadInData();
   101 	void ReadStreamData(TStreamId aStreamId, TInt aFrameOffset);
   102 	
   103 	bool iWritable;
   104 	std::auto_ptr<RReadStream> iFileIn;
   105 	std::auto_ptr<RWriteStream> iFileOut;
   106 
   107 	TUint32 iLastStreamIdCreated;
   108 	typedef std::map<TUint32, store_private::MemStreamBuf *> MemStreamBufPtrMap;
   109 	MemStreamBufPtrMap iStreams;
   110 	};
   111 
   112 
   113 class RStoreWriteStream : public RWriteStream
   114 	{
   115 public:
   116 	IMPORT_C TStreamId CreateLC(CStreamStore& aStore);
   117 	};
   118 
   119 class RStoreReadStream : public RReadStream
   120 	{
   121 public:
   122 	RStoreReadStream();
   123 	IMPORT_C void OpenLC(const CStreamStore& aStore, TStreamId aId);
   124 	};
   125 
   126 
   127 #endif