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 "UF_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
EXPORT_C RFileReadStream::RFileReadStream(RFile& aFile,TInt aPos)
|
sl@0
|
19 |
/** Constructs the read stream object, associates it with an already opened file,
|
sl@0
|
20 |
and prepares the stream for reading.
|
sl@0
|
21 |
|
sl@0
|
22 |
@param aFile A reference to the opened file.
|
sl@0
|
23 |
@param aPos The offset into the file from where the stream is to be read. Defaults
|
sl@0
|
24 |
to zero. */
|
sl@0
|
25 |
{
|
sl@0
|
26 |
Attach(aFile,aPos);
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
EXPORT_C TInt RFileReadStream::Open(RFs& aFs,const TDesC& aName,TUint aFileMode)
|
sl@0
|
30 |
/** Opens a file containing a stream and prepares the stream for reading.
|
sl@0
|
31 |
|
sl@0
|
32 |
The stream will be read from offset zero in the file.
|
sl@0
|
33 |
|
sl@0
|
34 |
@param aFs Handle to a file server session.
|
sl@0
|
35 |
@param aName The full path name of the file.
|
sl@0
|
36 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
37 |
defined by by the TFileMode type.
|
sl@0
|
38 |
@return KErrNone, if successful; otherwise, one of the other system wide eror
|
sl@0
|
39 |
codes.
|
sl@0
|
40 |
@see TFileMode */
|
sl@0
|
41 |
{
|
sl@0
|
42 |
TInt r=iSource.Open(aFs,aName,aFileMode);
|
sl@0
|
43 |
if (r==KErrNone)
|
sl@0
|
44 |
RReadStream::Attach(&iSource);
|
sl@0
|
45 |
return r;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
EXPORT_C void RFileReadStream::Attach(RFile& aFile,TInt aPos)
|
sl@0
|
49 |
/** Associates this stream with an already opened file and prepares the stream
|
sl@0
|
50 |
for reading.
|
sl@0
|
51 |
|
sl@0
|
52 |
@param aFile A reference to the opened file.
|
sl@0
|
53 |
@param aPos The offset into the file from where the stream is to be read. Defaults
|
sl@0
|
54 |
to zero. */
|
sl@0
|
55 |
{
|
sl@0
|
56 |
iSource.Attach(aFile,aPos);
|
sl@0
|
57 |
RReadStream::Attach(&iSource);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
EXPORT_C RFileWriteStream::RFileWriteStream(RFile& aFile,TInt aPos)
|
sl@0
|
61 |
/** Constructs the write stream object, associates it with an already opened file,
|
sl@0
|
62 |
and prepares the stream for writing.
|
sl@0
|
63 |
|
sl@0
|
64 |
@param aFile A reference to the opened file.
|
sl@0
|
65 |
@param aPos The offset into the file where the stream is to be written. Defaults
|
sl@0
|
66 |
to zero. */
|
sl@0
|
67 |
{
|
sl@0
|
68 |
Attach(aFile,aPos);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
EXPORT_C TInt RFileWriteStream::Open(RFs& aFs,const TDesC& aName,TUint aFileMode)
|
sl@0
|
72 |
/** Opens a file containing a stream and prepares the stream for writing.
|
sl@0
|
73 |
|
sl@0
|
74 |
The stream will be written to offset zero in the file.
|
sl@0
|
75 |
|
sl@0
|
76 |
@param aFs Handle to a file server session.
|
sl@0
|
77 |
@param aName The full path name of the file.
|
sl@0
|
78 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
79 |
defined by by the TFileMode type.
|
sl@0
|
80 |
@return KErrNone, if successful; otherwise, one of the other system wide error
|
sl@0
|
81 |
codes.
|
sl@0
|
82 |
@see TFileMode */
|
sl@0
|
83 |
{
|
sl@0
|
84 |
TInt r=iSink.Open(aFs,aName,aFileMode);
|
sl@0
|
85 |
if (r==KErrNone)
|
sl@0
|
86 |
RWriteStream::Attach(&iSink);
|
sl@0
|
87 |
return r;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
EXPORT_C TInt RFileWriteStream::Create(RFs& aFs,const TDesC& aName,TUint aFileMode)
|
sl@0
|
91 |
/** Creates a new file, associates it with this stream, and prepares the stream
|
sl@0
|
92 |
for writing.
|
sl@0
|
93 |
|
sl@0
|
94 |
The stream will be written to offset zero in the file.
|
sl@0
|
95 |
|
sl@0
|
96 |
@param aFs Handle to a file server session.
|
sl@0
|
97 |
@param aName The full path name of the new file. A file with this name must
|
sl@0
|
98 |
not already exist.
|
sl@0
|
99 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
100 |
defined by by the TFileMode type.
|
sl@0
|
101 |
@return KErrNone, if successful; otherwise, one of the other system wide error
|
sl@0
|
102 |
codes.
|
sl@0
|
103 |
@see TFileMode */
|
sl@0
|
104 |
{
|
sl@0
|
105 |
TInt r=iSink.Create(aFs,aName,aFileMode);
|
sl@0
|
106 |
if (r==KErrNone)
|
sl@0
|
107 |
RWriteStream::Attach(&iSink);
|
sl@0
|
108 |
return r;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
EXPORT_C TInt RFileWriteStream::Replace(RFs& aFs,const TDesC& aName,TUint aFileMode)
|
sl@0
|
112 |
/** Creates a new file, associates the file with this stream, and prepares the
|
sl@0
|
113 |
stream for writing.
|
sl@0
|
114 |
|
sl@0
|
115 |
The file replaces any existing file of the same name.
|
sl@0
|
116 |
|
sl@0
|
117 |
The stream will be written to offset zero in the file.
|
sl@0
|
118 |
|
sl@0
|
119 |
@param aFs Handle to a file server session.
|
sl@0
|
120 |
@param aName The full path name of the file.
|
sl@0
|
121 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
122 |
defined by by the TFileMode type.
|
sl@0
|
123 |
@return KErrNone, if successful; otherwise, one of the other system wide error
|
sl@0
|
124 |
codes.
|
sl@0
|
125 |
@see TFileMode */
|
sl@0
|
126 |
{
|
sl@0
|
127 |
TInt r=iSink.Replace(aFs,aName,aFileMode);
|
sl@0
|
128 |
if (r==KErrNone)
|
sl@0
|
129 |
RWriteStream::Attach(&iSink);
|
sl@0
|
130 |
return r;
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
EXPORT_C TInt RFileWriteStream::Temp(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
|
sl@0
|
134 |
/** Creates a temporary file, associates it with this stream, and prepares the
|
sl@0
|
135 |
stream for writing.
|
sl@0
|
136 |
|
sl@0
|
137 |
The new file is created in the specified path and a unique file name is generated
|
sl@0
|
138 |
by the file server.
|
sl@0
|
139 |
|
sl@0
|
140 |
Note that the store framework does not delete a temporary file after it is
|
sl@0
|
141 |
closed.
|
sl@0
|
142 |
|
sl@0
|
143 |
The stream will be written to offset zero in the file.
|
sl@0
|
144 |
|
sl@0
|
145 |
@param aFs Handle to a file server session.
|
sl@0
|
146 |
@param aPath The path where the new file is to be created.
|
sl@0
|
147 |
@param aName On return, contains the full path name of the new file.
|
sl@0
|
148 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
149 |
defined by by the TFileMode type.
|
sl@0
|
150 |
@return KErrNone, if successful; otherwise, one of the other system wide error
|
sl@0
|
151 |
codes.
|
sl@0
|
152 |
@see TFileMode */
|
sl@0
|
153 |
{
|
sl@0
|
154 |
TInt r=iSink.Temp(aFs,aPath,aName,aFileMode);
|
sl@0
|
155 |
if (r==KErrNone)
|
sl@0
|
156 |
RWriteStream::Attach(&iSink);
|
sl@0
|
157 |
return r;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
EXPORT_C void RFileWriteStream::Attach(RFile& aFile,TInt aPos)
|
sl@0
|
161 |
/** Associates this stream with an already opened file and prepares the stream
|
sl@0
|
162 |
for writing.
|
sl@0
|
163 |
|
sl@0
|
164 |
@param aFile A reference to the opened file.
|
sl@0
|
165 |
@param aPos The offset into the file where the stream is to be written. Defaults
|
sl@0
|
166 |
to zero. */
|
sl@0
|
167 |
{
|
sl@0
|
168 |
iSink.Attach(aFile,aPos);
|
sl@0
|
169 |
RWriteStream::Attach(&iSink);
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|