Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 EXPORT_C CEmbeddedStore* CEmbeddedStore::FromL(RReadStream& aHost)
19 /** Opens the store hosted by the specified stream.
21 Note that ownership of the stream passes to the store; the referenced RReadStream
24 @param aHost A reference to the stream hosting the embedded store.
25 @return A pointer to the embedded store object. */
27 CEmbeddedStore* store=FromLC(aHost);
32 EXPORT_C CEmbeddedStore* CEmbeddedStore::FromLC(RReadStream& aHost)
33 /** Open the store hosted by the specified stream, putting a pointer to the store
34 onto the cleanup stack.
36 Putting a pointer to the embedded store object onto the cleanup stack allows
37 the object and allocated resources to be cleaned up if a subsequent leave
40 Note that ownership of the stream passes to the store and the referenced RReadStream
43 @param aHost A reference to the stream hosting the embedded store.
44 @return A pointer to the embedded store object. */
46 CEmbeddedStore* store=CEmbeddedStore::DoNewLC(aHost.Source());
47 store->MarshalL(aHost);
51 EXPORT_C CEmbeddedStore* CEmbeddedStore::NewL(RWriteStream& aHost)
52 /** Creates an embedded store within the specified host stream.
54 Note that ownership of the stream passes to the store and the referenced RWriteStream
57 @param aHost A reference to the stream which is to host the embedded store.
58 @return A pointer to the embedded store object. */
60 CEmbeddedStore* store=NewLC(aHost);
65 EXPORT_C CEmbeddedStore* CEmbeddedStore::NewLC(RWriteStream& aHost)
66 /** Creates an embedded store within the specified host stream, putting a pointer
67 to the store onto the cleanup stack.
69 Putting a pointer to the embedded store object onto the cleanup stack allows
70 the object and allocated resources to be cleaned up if a subsequent leave
73 Note that ownership of the stream passes to the store and the referenced RWriteStream
76 @param aHost A reference to the stream which is to host the embedded store.
77 @return A pointer to the embedded store object. */
79 CEmbeddedStore* store=CEmbeddedStore::DoNewLC(aHost.Sink());
80 store->ConstructL(aHost);
84 EXPORT_C void CEmbeddedStore::Detach()
85 /** Gives up ownership of the host stream buffer. The caller takes on the responsibility
86 for discarding the buffer. */
92 EXPORT_C CEmbeddedStore::CEmbeddedStore(MStreamBuf* aHost)
95 __ASSERT_DEBUG(aHost!=NULL,Panic(EStoreNotOpen));
98 EXPORT_C void CEmbeddedStore::MarshalL(RReadStream& aStream)
100 // Second-phase construction for opening existing stores.
103 MStreamBuf* src=aStream.Source();
104 aStream=RReadStream();
105 __ASSERT_DEBUG(src!=NULL&&src==iHost.Host(),User::Invariant());
106 iStart=src->TellL(MStreamBuf::ERead);
107 RReadStream stream(src);
111 EXPORT_C void CEmbeddedStore::ConstructL(RWriteStream& aStream)
113 // Second-phase construction for creating new stores.
116 MStreamBuf* snk=aStream.Sink();
117 aStream=RWriteStream();
118 __ASSERT_DEBUG(snk!=NULL&&snk==iHost.Host(),User::Invariant());
119 iStart=snk->TellL(MStreamBuf::EWrite);
120 RWriteStream stream(snk);
124 EXPORT_C CEmbeddedStore::~CEmbeddedStore()
125 /** Frees resources owned by the object, prior to its destruction. In particular,
126 the destructor closes the associated file. */
128 MStreamBuf* buf=iHost.Host();
133 EXPORT_C MStreamBuf* CEmbeddedStore::DoReadL(TStreamId anId) const
135 return HDirectStoreBuf::OpenL(MUTABLE_CAST(TStreamExchange&,iHost),anId,HDirectStoreBuf::ERead);
138 EXPORT_C MStreamBuf* CEmbeddedStore::DoCreateL(TStreamId& anId)
140 return HDirectStoreBuf::CreateL(iHost,anId,HDirectStoreBuf::ERead|HDirectStoreBuf::EWrite);
143 EXPORT_C void CEmbeddedStore::DoSetRootL(TStreamId anId)
145 RShareWriteStream stream(iHost,iStart);
148 CleanupStack::PopAndDestroy();
152 EXPORT_C void CEmbeddedStore::DoCommitL()
154 iHost.HostL()->SynchL();
157 CEmbeddedStore* CEmbeddedStore::DoNewLC(MStreamBuf* aHost)
160 CEmbeddedStore* store=new(ELeave) CEmbeddedStore(aHost);
162 CleanupStack::PushL(store);