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