os/persistentdata/persistentstorage/store/USTOR/UT_EMBED.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) 1998-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 "UT_STD.H"
sl@0
    17
sl@0
    18
EXPORT_C CEmbeddedStore* CEmbeddedStore::FromL(RReadStream& aHost)
sl@0
    19
/** Opens the store hosted by the specified stream.
sl@0
    20
sl@0
    21
Note that ownership of the stream passes to the store; the referenced RReadStream 
sl@0
    22
is cleared.
sl@0
    23
sl@0
    24
@param aHost A reference to the stream hosting the embedded store.
sl@0
    25
@return A pointer to the embedded store object. */
sl@0
    26
	{
sl@0
    27
	CEmbeddedStore* store=FromLC(aHost);
sl@0
    28
	CleanupStack::Pop();
sl@0
    29
	return store;
sl@0
    30
	}
sl@0
    31
sl@0
    32
EXPORT_C CEmbeddedStore* CEmbeddedStore::FromLC(RReadStream& aHost)
sl@0
    33
/** Open the store hosted by the specified stream, putting a pointer to the store 
sl@0
    34
onto the cleanup stack.
sl@0
    35
sl@0
    36
Putting a pointer to the embedded store object onto the cleanup stack allows 
sl@0
    37
the object and allocated resources to be cleaned up if a subsequent leave 
sl@0
    38
occurs.
sl@0
    39
sl@0
    40
Note that ownership of the stream passes to the store and the referenced RReadStream 
sl@0
    41
is cleared.
sl@0
    42
sl@0
    43
@param aHost A reference to the stream hosting the embedded store.
sl@0
    44
@return A pointer to the embedded store object. */
sl@0
    45
	{
sl@0
    46
	CEmbeddedStore* store=CEmbeddedStore::DoNewLC(aHost.Source());
sl@0
    47
	store->MarshalL(aHost);
sl@0
    48
	return store;
sl@0
    49
	}
sl@0
    50
sl@0
    51
EXPORT_C CEmbeddedStore* CEmbeddedStore::NewL(RWriteStream& aHost)
sl@0
    52
/** Creates an embedded store within the specified host stream.
sl@0
    53
sl@0
    54
Note that ownership of the stream passes to the store and the referenced RWriteStream 
sl@0
    55
is cleared.
sl@0
    56
sl@0
    57
@param aHost A reference to the stream which is to host the embedded store.
sl@0
    58
@return A pointer to the embedded store object. */
sl@0
    59
	{
sl@0
    60
	CEmbeddedStore* store=NewLC(aHost);
sl@0
    61
	CleanupStack::Pop();
sl@0
    62
	return store;
sl@0
    63
	}
sl@0
    64
sl@0
    65
EXPORT_C CEmbeddedStore* CEmbeddedStore::NewLC(RWriteStream& aHost)
sl@0
    66
/** Creates an embedded store within the specified host stream, putting a pointer 
sl@0
    67
to the store onto the cleanup stack.
sl@0
    68
sl@0
    69
Putting a pointer to the embedded store object onto the cleanup stack allows 
sl@0
    70
the object and allocated resources to be cleaned up if a subsequent leave 
sl@0
    71
occurs.
sl@0
    72
sl@0
    73
Note that ownership of the stream passes to the store and the referenced RWriteStream 
sl@0
    74
is cleared.
sl@0
    75
sl@0
    76
@param aHost A reference to the stream which is to host the embedded store.
sl@0
    77
@return A pointer to the embedded store object. */
sl@0
    78
	{
sl@0
    79
	CEmbeddedStore* store=CEmbeddedStore::DoNewLC(aHost.Sink());
sl@0
    80
	store->ConstructL(aHost);
sl@0
    81
	return store;
sl@0
    82
	}
sl@0
    83
sl@0
    84
EXPORT_C void CEmbeddedStore::Detach()
sl@0
    85
/** Gives up ownership of the host stream buffer. The caller takes on the responsibility 
sl@0
    86
for discarding the buffer. */
sl@0
    87
	{
sl@0
    88
	iHost.Host();
sl@0
    89
	iHost.Release();
sl@0
    90
	}
sl@0
    91
sl@0
    92
EXPORT_C CEmbeddedStore::CEmbeddedStore(MStreamBuf* aHost)
sl@0
    93
	: iHost(aHost)
sl@0
    94
	{
sl@0
    95
	__ASSERT_DEBUG(aHost!=NULL,Panic(EStoreNotOpen));
sl@0
    96
	}
sl@0
    97
sl@0
    98
EXPORT_C void CEmbeddedStore::MarshalL(RReadStream& aStream)
sl@0
    99
//
sl@0
   100
// Second-phase construction for opening existing stores.
sl@0
   101
//
sl@0
   102
	{
sl@0
   103
	MStreamBuf* src=aStream.Source();
sl@0
   104
	aStream=RReadStream();
sl@0
   105
	__ASSERT_DEBUG(src!=NULL&&src==iHost.Host(),User::Invariant());
sl@0
   106
	iStart=src->TellL(MStreamBuf::ERead);
sl@0
   107
	RReadStream stream(src);
sl@0
   108
	stream>>iRoot;
sl@0
   109
	}
sl@0
   110
sl@0
   111
EXPORT_C void CEmbeddedStore::ConstructL(RWriteStream& aStream)
sl@0
   112
//
sl@0
   113
// Second-phase construction for creating new stores.
sl@0
   114
//
sl@0
   115
	{
sl@0
   116
	MStreamBuf* snk=aStream.Sink();
sl@0
   117
	aStream=RWriteStream();
sl@0
   118
	__ASSERT_DEBUG(snk!=NULL&&snk==iHost.Host(),User::Invariant());
sl@0
   119
	iStart=snk->TellL(MStreamBuf::EWrite);
sl@0
   120
	RWriteStream stream(snk);
sl@0
   121
	stream<<iRoot;
sl@0
   122
	}
sl@0
   123
sl@0
   124
EXPORT_C CEmbeddedStore::~CEmbeddedStore()
sl@0
   125
/** Frees resources owned by the object, prior to its destruction. In particular, 
sl@0
   126
the destructor closes the associated file. */
sl@0
   127
	{
sl@0
   128
	MStreamBuf* buf=iHost.Host();
sl@0
   129
	if (buf!=NULL)
sl@0
   130
		buf->Release();
sl@0
   131
	}
sl@0
   132
sl@0
   133
EXPORT_C MStreamBuf* CEmbeddedStore::DoReadL(TStreamId anId) const
sl@0
   134
	{
sl@0
   135
	return HDirectStoreBuf::OpenL(MUTABLE_CAST(TStreamExchange&,iHost),anId,HDirectStoreBuf::ERead);
sl@0
   136
	}
sl@0
   137
sl@0
   138
EXPORT_C MStreamBuf* CEmbeddedStore::DoCreateL(TStreamId& anId)
sl@0
   139
	{
sl@0
   140
	return HDirectStoreBuf::CreateL(iHost,anId,HDirectStoreBuf::ERead|HDirectStoreBuf::EWrite);
sl@0
   141
	}
sl@0
   142
sl@0
   143
EXPORT_C void CEmbeddedStore::DoSetRootL(TStreamId anId)
sl@0
   144
	{
sl@0
   145
	RShareWriteStream stream(iHost,iStart);
sl@0
   146
	stream.PushL();
sl@0
   147
	stream<<anId;
sl@0
   148
	CleanupStack::PopAndDestroy();
sl@0
   149
	iRoot=anId;
sl@0
   150
	}
sl@0
   151
	
sl@0
   152
EXPORT_C void CEmbeddedStore::DoCommitL()
sl@0
   153
	{
sl@0
   154
	iHost.HostL()->SynchL();
sl@0
   155
	}
sl@0
   156
	
sl@0
   157
CEmbeddedStore* CEmbeddedStore::DoNewLC(MStreamBuf* aHost)
sl@0
   158
	{
sl@0
   159
	aHost->PushL();
sl@0
   160
	CEmbeddedStore* store=new(ELeave) CEmbeddedStore(aHost);
sl@0
   161
	CleanupStack::Pop();
sl@0
   162
	CleanupStack::PushL(store);
sl@0
   163
	return store;
sl@0
   164
	}
sl@0
   165