os/persistentdata/persistentstorage/store/USTOR/UT_STRM.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "UT_STD.H"
    17 
    18 EXPORT_C void RStoreReadStream::OpenL(const CStreamStore& aStore,TStreamId anId)
    19 /** Opens and prepares an existing stream for reading. The function leaves if it 
    20 cannot complete successfully.
    21 
    22 @param aStore A reference to the store containing the stream with the specified 
    23 stream id.
    24 @param anId The stream id of the stream to be read. */
    25 	{
    26 	if (anId==KNullStreamId)
    27 		__LEAVE(KErrNotFound);
    28 	RReadStream::Attach(aStore.DoReadL(anId));
    29 	}
    30 
    31 EXPORT_C void RStoreReadStream::OpenLC(const CStreamStore& aStore,TStreamId anId)
    32 /** Opens and prepares an existing stream for reading, leaving a cleanup item on 
    33 the cleanup stack. The function leaves if it cannot complete successfully.
    34 
    35 Placing a cleanup item for the RStoreReadStream onto the cleanup stack allows 
    36 allocated resources to be cleaned up if a subsequent leave occurs.
    37 
    38 @param aStore A reference to the store containing the stream with the specified 
    39 id.
    40 @param anId The stream id of the stream to be read. */
    41 	{
    42 	OpenL(aStore,anId);
    43 	PushL();
    44 	}
    45 
    46 EXPORT_C TStreamId RStoreWriteStream::CreateL(CStreamStore& aStore)
    47 /** Creates a new stream.
    48 
    49 The function creates a new stream in the specified store and prepares the 
    50 stream for writing. The function returns the new stream id, and leaves if 
    51 it cannot complete successfully.
    52 
    53 Note that a call to this function must be matched by a call to CommitL() before 
    54 this object is disposed of.
    55 
    56 @param aStore A reference to the store which is to contain the new stream.
    57 @return The stream id of the newly created stream.
    58 @see RWriteStream::Release()
    59 @see RWriteStream::CommitL() */
    60 	{
    61 	TStreamId id;
    62 	RWriteStream::Attach(aStore.DoCreateL(id));
    63 	return id;
    64 	}
    65 
    66 EXPORT_C TStreamId RStoreWriteStream::CreateLC(CStreamStore& aStore)
    67 /** Creates a new stream, putting a cleanup item onto the cleanup stack.
    68 
    69 The function creates a new stream in the specified store and prepares the 
    70 stream for writing. The function returns the new stream id, and leaves if 
    71 it cannot complete successfully.
    72 
    73 Putting a cleanup item onto the cleanup stack allows allocated resources to 
    74 be cleaned up if a subsequent leave occurs.
    75 
    76 Note that a call to this function must be matched by a call to CommitL() before 
    77 this object is disposed of.
    78 
    79 @param aStore A reference to the store which is to contain the new stream.
    80 @return The stream id of the newly created stream.
    81 @see RWriteStream::Release()
    82 @see RWriteStream::CommitL() */
    83 	{
    84 	TStreamId id=CreateL(aStore);
    85 	PushL();
    86 	return id;
    87 	}
    88 
    89 EXPORT_C void RStoreWriteStream::OpenL(CStreamStore& aStore,TStreamId anId)
    90 /** Opens an existing stream and prepares it for overwriting.
    91 
    92 The function leaves if cannot complete successfully.
    93 
    94 Note that a call to this function must be matched by a call to CommitL() before 
    95 this object is disposed of.
    96 
    97 @param aStore A reference to the store containing the stream.
    98 @param anId The id of the stream to be overwritten.
    99 @see RWriteStream::Release()
   100 @see RWriteStream::CommitL()
   101 @see CDirectFileStore */
   102 	{
   103 	if (anId==KNullStreamId)
   104 		__LEAVE(KErrNotFound);
   105 	RWriteStream::Attach(aStore.DoWriteL(anId));
   106 	}
   107 
   108 EXPORT_C void RStoreWriteStream::OpenLC(CStreamStore& aStore,TStreamId anId)
   109 /** Opens an existing stream, prepares it for overwriting, and puts a cleanup item 
   110 onto the cleanup stack.
   111 
   112 The function leaves if cannot complete successfully.
   113 
   114 Putting a cleanup item onto the cleanup stack allows allocated resources to 
   115 be cleaned up if a subsequent leave occurs.
   116 
   117 Note that a call to this function must be matched by a call to CommitL() before 
   118 this object is disposed of.
   119 
   120 @param aStore A reference to the store containing the stream.
   121 @param anId The id of the stream to be overwritten.
   122 @see RWriteStream::Release()
   123 @see RWriteStream::CommitL()
   124 @see CDirectFileStore */
   125 	{
   126 	OpenL(aStore,anId);
   127 	PushL();
   128 	}
   129 
   130 EXPORT_C void RStoreWriteStream::ReplaceL(CStreamStore& aStore,TStreamId anId)
   131 /** Opens an existing stream and prepares it for replacement.
   132 
   133 The function leaves if it cannot complete successfully.
   134 
   135 Note that a call to this function must be matched by a call to CommitL() before 
   136 this object is disposed of.
   137 
   138 @param aStore A reference to the store containing the stream.
   139 @param anId The id of the stream to be replaced.
   140 @see RWriteStream::Release()
   141 @see RWriteStream::CommitL()
   142 @see CDirectFileStore */
   143 	{
   144 	if (anId==KNullStreamId)
   145 		__LEAVE(KErrNotFound);
   146 	RWriteStream::Attach(aStore.DoReplaceL(anId));
   147 	}
   148 
   149 EXPORT_C void RStoreWriteStream::ReplaceLC(CStreamStore& aStore,TStreamId anId)
   150 /** Opens an existing stream, prepares it for replacement and puts a cleanup item 
   151 onto the cleanup stack.
   152 
   153 The function leaves if it cannot complete successfully.
   154 
   155 Placing a cleanup item onto the cleanup stack allows allocated resources to 
   156 be cleaned up if a subsequent leave occurs.
   157 
   158 Note that a call to this function must be matched by a call to CommitL() before 
   159 this object is disposed of.
   160 
   161 @param aStore A reference to the store containing the stream.
   162 @param anId The id of the stream to be replaced.
   163 @see RWriteStream::Release()
   164 @see RWriteStream::CommitL()
   165 @see CDirectFileStore */
   166 	{
   167 	ReplaceL(aStore,anId);
   168 	PushL();
   169 	}
   170 
   171 EXPORT_C void RStoreWriteStream::AppendL(CStreamStore& aStore,TStreamId anId)
   172 /** Opens an existing stream and prepares it for appending.
   173 
   174 The function leaves if it cannot complete successfully.
   175 
   176 Note that a call to this function must be matched by a call to CommitL() before 
   177 this object is disposed of.
   178 
   179 @param aStore A reference to the store containing the stream.
   180 @param anId The id of the stream to be appended.
   181 @see RWriteStream::Release()
   182 @see RWriteStream::CommitL()
   183 @see CDirectFileStore
   184 @see CPermanentFileStore */
   185 	{
   186 	AppendLC(aStore,anId);
   187 	CleanupStack::Pop();
   188 	}
   189 
   190 EXPORT_C void RStoreWriteStream::AppendLC(CStreamStore& aStore,TStreamId anId)
   191 /** Opens an existing stream, prepares it for appending, and puts a cleanup item 
   192 onto the cleanup stack. 
   193 
   194 The function leaves if it cannot complete successfully.
   195 
   196 Putting a cleanup item onto the cleanup stack allows allocated resources to 
   197 be cleaned up if a subsequent leave occurs.
   198 
   199 Note that call to this function must be matched by a call to CommitL() before 
   200 the RStoreWriteStream object is disposed of.
   201 
   202 @param aStore A reference to the store containing the stream.
   203 @param anId The id of the stream to be appended.
   204 @see RWriteStream::Release()
   205 @see RWriteStream::CommitL()
   206 @see CDirectFileStore
   207 @see CPermanentFileStore */
   208 	{
   209 	OpenLC(aStore,anId);
   210 	Sink()->SeekL(MStreamBuf::EWrite,EStreamEnd);
   211 	}
   212