os/persistentdata/persistentstorage/store/UFILE/UF_DIR.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) 2003-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
//
sl@0
    15
sl@0
    16
#include "UF_STD.H"
sl@0
    17
sl@0
    18
EXPORT_C TUid CDirectFileStore::Layout() const 
sl@0
    19
/** Gets the UID that uniquely identifies this file store as a direct file store.
sl@0
    20
sl@0
    21
@return KDirectFileStoreLayoutUid. */
sl@0
    22
	{
sl@0
    23
	return KDirectFileStoreLayoutUid;
sl@0
    24
	}
sl@0
    25
sl@0
    26
EXPORT_C CDirectFileStore::CDirectFileStore(RFile& aFile)
sl@0
    27
//
sl@0
    28
// Constructor creating a new file store.
sl@0
    29
//
sl@0
    30
	: CFileStore(aFile)
sl@0
    31
	{}
sl@0
    32
sl@0
    33
EXPORT_C CDirectFileStore::CDirectFileStore(RFileBuf& aBuf,const TUidType& aType)
sl@0
    34
//
sl@0
    35
// Constructor opening an existing file store.
sl@0
    36
//
sl@0
    37
	: CFileStore(aBuf,aType)
sl@0
    38
	{}
sl@0
    39
sl@0
    40
EXPORT_C MStreamBuf* CDirectFileStore::DoReadL(TStreamId anId) const
sl@0
    41
//
sl@0
    42
// Open a stream for reading.
sl@0
    43
//
sl@0
    44
	{
sl@0
    45
	return HDirectStoreBuf::OpenL(Host(),anId,HDirectStoreBuf::ERead);
sl@0
    46
	}
sl@0
    47
sl@0
    48
EXPORT_C MStreamBuf* CDirectFileStore::DoCreateL(TStreamId& anId)
sl@0
    49
//
sl@0
    50
// Create a new stream and open for both reading and writing.
sl@0
    51
//
sl@0
    52
	{
sl@0
    53
	return HDirectStoreBuf::CreateL(Host(),anId,HDirectStoreBuf::ERead|HDirectStoreBuf::EWrite);
sl@0
    54
	}
sl@0
    55
sl@0
    56
EXPORT_C void CDirectFileStore::ExternalizeL(RWriteStream& aStream) const
sl@0
    57
//
sl@0
    58
// Externalize this store's structure, consisting of just the root stream id.
sl@0
    59
//
sl@0
    60
	{
sl@0
    61
	aStream<<iRoot;
sl@0
    62
	}
sl@0
    63
sl@0
    64
EXPORT_C void CDirectFileStore::InternalizeL(RReadStream& aStream)
sl@0
    65
//
sl@0
    66
// Internalize this store's structure, consisting of just the root stream id.
sl@0
    67
//
sl@0
    68
	{
sl@0
    69
	aStream>>iRoot;
sl@0
    70
	}
sl@0
    71
sl@0
    72
EXPORT_C void CDirectFileStore::DoSetRootL(TStreamId anId)
sl@0
    73
//
sl@0
    74
// Set the root stream id and flag a change to this store's structure.
sl@0
    75
//
sl@0
    76
	{
sl@0
    77
	iRoot=anId;
sl@0
    78
	ChangedL();
sl@0
    79
	}
sl@0
    80
sl@0
    81
EXPORT_C CFileStore* CDirectFileStore::DoNewL(RFile& aFile)
sl@0
    82
//
sl@0
    83
// Factory function creating a new file.
sl@0
    84
//
sl@0
    85
	{
sl@0
    86
	return new(ELeave) CDirectFileStore(aFile);
sl@0
    87
	}
sl@0
    88