sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef SYSIF_H
|
sl@0
|
21 |
#define SYSIF_H
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <f32file.h>
|
sl@0
|
25 |
#include <es_sock.h>
|
sl@0
|
26 |
#include <c32comm.h>
|
sl@0
|
27 |
#include <sys/select.h>
|
sl@0
|
28 |
#include <spawn.h>
|
sl@0
|
29 |
#include <sys/types.h>
|
sl@0
|
30 |
#include <wchar.h>
|
sl@0
|
31 |
#include "ipcclient.h"
|
sl@0
|
32 |
#include <dirent.h>
|
sl@0
|
33 |
#include <sys/socket.h>
|
sl@0
|
34 |
#include <net/if.h>
|
sl@0
|
35 |
#include <commdb.h>
|
sl@0
|
36 |
#include <commdbconnpref.h>
|
sl@0
|
37 |
|
sl@0
|
38 |
/*
|
sl@0
|
39 |
@internalComponent
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
_LIT(KEstlibInit, "STDLIBS-INIT");
|
sl@0
|
42 |
|
sl@0
|
43 |
_LIT(KFDTransferSvr,"FDTrnsfrSvr");
|
sl@0
|
44 |
//Forward declaration for references below
|
sl@0
|
45 |
class RPipe;
|
sl@0
|
46 |
class CFileDesTransferServer;
|
sl@0
|
47 |
class RFileDesTransferSession;
|
sl@0
|
48 |
class CFileDescBase;
|
sl@0
|
49 |
/* TODO: We don't have to do this in CFileTable. Move to methods */
|
sl@0
|
50 |
class CFileSocketDesc;
|
sl@0
|
51 |
|
sl@0
|
52 |
struct TChild
|
sl@0
|
53 |
/*
|
sl@0
|
54 |
@internalComponent
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
{
|
sl@0
|
57 |
TInt iFid;
|
sl@0
|
58 |
TProcessId iPid;
|
sl@0
|
59 |
RProcess iProc;
|
sl@0
|
60 |
|
sl@0
|
61 |
#ifdef __X86GCC__
|
sl@0
|
62 |
// The underlying data for a TProcessId is a TUint64. GCC raises an error if this is intialised to a negative value. Consider changing for all platforms.
|
sl@0
|
63 |
TChild(TInt aFid = -1, TProcessId aPid = 0) : iFid(aFid), iPid(aPid)
|
sl@0
|
64 |
#else
|
sl@0
|
65 |
TChild(TInt aFid = -1, TProcessId aPid = -1) : iFid(aFid), iPid(aPid)
|
sl@0
|
66 |
#endif //__X86GCC__
|
sl@0
|
67 |
{
|
sl@0
|
68 |
// nada
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
#ifdef __X86GCC__
|
sl@0
|
72 |
// The underlying data for a TProcessId is a TUint64. GCC raises an error if this is intialised to a negative value. Consider changing for all platforms.
|
sl@0
|
73 |
TChild(RProcess &aProc, TProcessId aFid = 0) : iProc(aProc), iFid(aFid)
|
sl@0
|
74 |
#else
|
sl@0
|
75 |
TChild(RProcess &aProc, TProcessId aFid = -1) : iProc(aProc), iFid(aFid)
|
sl@0
|
76 |
#endif //__X86GCC__
|
sl@0
|
77 |
{
|
sl@0
|
78 |
iPid = aProc.Id();
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
|
sl@0
|
82 |
static TBool MatchByFid(const TChild& aChild1, const TChild& aChild2)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
if (aChild1.iFid == aChild2.iFid)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
return ETrue;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
return EFalse;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
static TBool MatchByPid(const TChild& aChild1, const TChild& aChild2)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
if (aChild1.iPid == aChild2.iPid)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
return ETrue;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
return EFalse;
|
sl@0
|
98 |
}
|
sl@0
|
99 |
};
|
sl@0
|
100 |
|
sl@0
|
101 |
class TCLSICleanup
|
sl@0
|
102 |
/*
|
sl@0
|
103 |
@internalComponent
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
{
|
sl@0
|
106 |
public:
|
sl@0
|
107 |
void StorePtrs(RHeap* aHeap, RFs* aFs, RSocketServ* aSs, RCommServ* aCs, RFastLock* aSsLock, RFastLock* aCsLock)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
iHeap = aHeap;
|
sl@0
|
110 |
iFs = aFs;
|
sl@0
|
111 |
iSs = aSs;
|
sl@0
|
112 |
iCs = aCs;
|
sl@0
|
113 |
iSsLock = aSsLock;
|
sl@0
|
114 |
iCsLock = aCsLock;
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
~TCLSICleanup()
|
sl@0
|
118 |
{
|
sl@0
|
119 |
iFs->Close();
|
sl@0
|
120 |
iSs->Close();
|
sl@0
|
121 |
iSsLock->Close();
|
sl@0
|
122 |
iCs->Close();
|
sl@0
|
123 |
iCsLock->Close();
|
sl@0
|
124 |
iHeap->Close();
|
sl@0
|
125 |
}
|
sl@0
|
126 |
private:
|
sl@0
|
127 |
RHeap* iHeap;
|
sl@0
|
128 |
RFs* iFs;
|
sl@0
|
129 |
RSocketServ* iSs;
|
sl@0
|
130 |
RCommServ* iCs;
|
sl@0
|
131 |
RFastLock* iSsLock;
|
sl@0
|
132 |
RFastLock* iCsLock;
|
sl@0
|
133 |
};
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
class TFileTableCleanup
|
sl@0
|
137 |
{
|
sl@0
|
138 |
public:
|
sl@0
|
139 |
void SaveUserHeap(RHeap* aHeap)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
iUserHeap = aHeap;
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
~TFileTableCleanup()
|
sl@0
|
145 |
{
|
sl@0
|
146 |
User::SwitchHeap(iUserHeap);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
private:
|
sl@0
|
150 |
RHeap* iUserHeap;
|
sl@0
|
151 |
};
|
sl@0
|
152 |
|
sl@0
|
153 |
|
sl@0
|
154 |
class CFileTable: public CBase
|
sl@0
|
155 |
/*
|
sl@0
|
156 |
@internalComponent
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
{
|
sl@0
|
159 |
public:
|
sl@0
|
160 |
CFileTable();
|
sl@0
|
161 |
~CFileTable();
|
sl@0
|
162 |
|
sl@0
|
163 |
TInt Init(RHeap* aHeap = NULL);
|
sl@0
|
164 |
void Close();
|
sl@0
|
165 |
void Default(CFileDescBase* aRedirMedia, CFileDescBase* aStdErrMedia);
|
sl@0
|
166 |
TInt Reserve();
|
sl@0
|
167 |
TInt Attach(TInt aFid, CFileDescBase* aFile);
|
sl@0
|
168 |
TInt Detach(TInt aFid, CFileDescBase*& aDetached);
|
sl@0
|
169 |
TInt At(TInt aFid, CFileDescBase*& aFound) const;
|
sl@0
|
170 |
TInt Reserve(TInt aFids[3]);
|
sl@0
|
171 |
TInt Detach(TInt aFids[3]);
|
sl@0
|
172 |
|
sl@0
|
173 |
int dup (int fid, int& anErrno);
|
sl@0
|
174 |
int dup2 (int fid1, int fid2, int& anErrno);
|
sl@0
|
175 |
int open (const wchar_t* name, int mode, int perms, int& anErrno);
|
sl@0
|
176 |
int close (int fid, int& anErrno);
|
sl@0
|
177 |
|
sl@0
|
178 |
int UserClose (int fid, int& anErrno);
|
sl@0
|
179 |
|
sl@0
|
180 |
int lseek (int fid, int offset, int whence, int& anErrno);
|
sl@0
|
181 |
int fstat (int fid, struct stat* st, int& anErrno);
|
sl@0
|
182 |
int socket (int family, int style, int protocol, int& anErrno, RSocketServ& aSs);
|
sl@0
|
183 |
int listen (int fd, int n, int& anErrno);
|
sl@0
|
184 |
int bind (int fd, TSockAddr& address, int& anErrno);
|
sl@0
|
185 |
int sockname (int fd, TSockAddr& address, int anEnd, int& anErrno);
|
sl@0
|
186 |
int getsockopt (int fd, int level, int opt, void* buf, unsigned long* len, int& anErrno);
|
sl@0
|
187 |
int setsockopt (int fd, int level, int opt, void* buf, unsigned long len, int& anErrno);
|
sl@0
|
188 |
int ioctlcomplete (int fid, int cmd, void* param, TRequestStatus& aStatus, int& anErrno);
|
sl@0
|
189 |
int ioctlcancel (int fid, int& anErrno);
|
sl@0
|
190 |
int fcntl (int aFid, int aCmd, long anArg, int& anErrno);
|
sl@0
|
191 |
|
sl@0
|
192 |
TInt Asynch (int fid, CFileDescBase*& aFile);
|
sl@0
|
193 |
|
sl@0
|
194 |
int popen (const wchar_t* file, const wchar_t* cmd,const char* mode, int& anErrno);
|
sl@0
|
195 |
int pclose (int aFid, int& anErrno);
|
sl@0
|
196 |
int popen3 (const wchar_t *file, const wchar_t *cmd, wchar_t** envp, int fids[3], int& anErrno);
|
sl@0
|
197 |
int system (const wchar_t* aCmd, const wchar_t* aCmdArg, int& anErrno);
|
sl@0
|
198 |
int waitpid (int pid, int* status, int options, int& anErrno);
|
sl@0
|
199 |
|
sl@0
|
200 |
int posix_spawn (int* pid, const wchar_t* wpath,
|
sl@0
|
201 |
const posix_spawn_file_actions_t* file_actions,
|
sl@0
|
202 |
const posix_spawnattr_t* attrp,
|
sl@0
|
203 |
const wchar_t* wargs, wchar_t** wenvp);
|
sl@0
|
204 |
|
sl@0
|
205 |
void TransferToChild (RProcess& child, TInt aFds[], TInt aWhich, TInt aSlot);
|
sl@0
|
206 |
void PassEnvToChild (RProcess& child, wchar_t** aEnvp);
|
sl@0
|
207 |
void PassFileActionsToChild (RProcess& child,
|
sl@0
|
208 |
const posix_spawn_file_actions_t* aFileActions);
|
sl@0
|
209 |
|
sl@0
|
210 |
void CheckOrigins (wchar_t**& wenvp, int& aCount);
|
sl@0
|
211 |
TInt InheritFiles(CFileDesTransferServer* server);
|
sl@0
|
212 |
int pipe (int fildes[2], int& anErrno);
|
sl@0
|
213 |
int mkfifo (const wchar_t *pathname, mode_t mode, int& anErrno, RFs& aFs);
|
sl@0
|
214 |
int CreatePipeDesc (int fildes, RPipe& aHandle, TUint16 aMode = 0);
|
sl@0
|
215 |
void ClosePipe (int fds[2], int& err);
|
sl@0
|
216 |
|
sl@0
|
217 |
static CFileDescBase* FifoOpen (const wchar_t* pathName, mode_t mode, int perms, int& anErrno);
|
sl@0
|
218 |
int link (const wchar_t *oldpathName, const wchar_t *newpathName, int& anErrno, RFs& aFs);
|
sl@0
|
219 |
static CFileDescBase* LinkOpen (const wchar_t* pathName, mode_t mode, int perms, int& anErrno, RFs& aFs);
|
sl@0
|
220 |
int unlink (RFs& aFs, const wchar_t *pathName, int& anErrno);
|
sl@0
|
221 |
static CFileDescBase* FileSocketOpen(int& anErrno);
|
sl@0
|
222 |
int BindFileSocket(int fid, const struct sockaddr_un* addr, int& anErrno, RFs& aFs);
|
sl@0
|
223 |
int AcceptFileSocket(CFileSocketDesc* pfs, const struct sockaddr_un* addr, int& anErrno, RFs& aFs);
|
sl@0
|
224 |
int ConnectFileSocket(int fid, const struct sockaddr_un* addr, int& anErrno, RFs& aFs);
|
sl@0
|
225 |
|
sl@0
|
226 |
TInt RConnectionCount();
|
sl@0
|
227 |
TInt RConnectionAt (TInt aRcIndex, RConnection *&aRc);
|
sl@0
|
228 |
TInt AddRConnectionPtr (RConnection *aRc, TInt &aRcIndex);
|
sl@0
|
229 |
void RemoveRConnectionPtrAt (TInt aRcIndex);
|
sl@0
|
230 |
void DeleteRConnectionList();
|
sl@0
|
231 |
|
sl@0
|
232 |
CFileDesTransferServer* NewFDTransferServerL(RSemaphore &sem);
|
sl@0
|
233 |
void StartFDTransferServer(CFileDesTransferServer* pServer);
|
sl@0
|
234 |
void CloseFDTransferServer(CFileDesTransferServer* pServer);
|
sl@0
|
235 |
|
sl@0
|
236 |
int SetEcho(int aFd, TUint8 aEcho, int& aErrno);
|
sl@0
|
237 |
|
sl@0
|
238 |
void DoTransferAll(RSemaphore &sem,TDesC& name);
|
sl@0
|
239 |
TInt GetFileCount() const
|
sl@0
|
240 |
{
|
sl@0
|
241 |
return iFids.Count();
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
void Lock()
|
sl@0
|
245 |
{
|
sl@0
|
246 |
iFidLock.Wait();
|
sl@0
|
247 |
}
|
sl@0
|
248 |
|
sl@0
|
249 |
void Unlock()
|
sl@0
|
250 |
{
|
sl@0
|
251 |
iFidLock.Signal();
|
sl@0
|
252 |
}
|
sl@0
|
253 |
|
sl@0
|
254 |
private:
|
sl@0
|
255 |
TFileTableCleanup iCleanup;
|
sl@0
|
256 |
CArrayPtrSeg<CFileDescBase> iFids;
|
sl@0
|
257 |
// invoked by dup
|
sl@0
|
258 |
TInt Dup(TInt aFid);
|
sl@0
|
259 |
// invoked by both dup2 and fcntl with F_DUPFD
|
sl@0
|
260 |
TInt Dup2(TInt aFid, TInt aFid2, TBool aCloseFid2);
|
sl@0
|
261 |
// the real dup-er.
|
sl@0
|
262 |
TInt DupFd(TInt aFid1, TInt aFid2);
|
sl@0
|
263 |
void Release(TInt aFid);
|
sl@0
|
264 |
|
sl@0
|
265 |
//Lock for protecting FIDs across threads
|
sl@0
|
266 |
RFastLock iFidLock;
|
sl@0
|
267 |
|
sl@0
|
268 |
//stores pids of all children of this process
|
sl@0
|
269 |
RArray<TChild> iChildren;
|
sl@0
|
270 |
|
sl@0
|
271 |
//Methods to manipulate iChildren
|
sl@0
|
272 |
void AddChild(const TChild& aChild);
|
sl@0
|
273 |
void RemoveChild(TInt aIdx);
|
sl@0
|
274 |
|
sl@0
|
275 |
void ExpandFTableL(TInt count);
|
sl@0
|
276 |
|
sl@0
|
277 |
const RArray<TChild>& GetChildren() const
|
sl@0
|
278 |
{
|
sl@0
|
279 |
return iChildren;
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
TInt FindChild(const TInt aFid) const
|
sl@0
|
283 |
{
|
sl@0
|
284 |
return iChildren.Find(TChild(aFid),
|
sl@0
|
285 |
TIdentityRelation<TChild>(TChild::MatchByFid));
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
TInt FindChild(const TProcessId aPid) const
|
sl@0
|
289 |
{
|
sl@0
|
290 |
return iChildren.Find(TChild(-1, aPid),
|
sl@0
|
291 |
TIdentityRelation<TChild>(TChild::MatchByPid));
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
CArrayPtrSeg<RConnection> iRConnectionList;
|
sl@0
|
295 |
//Lock for protecting iRConnectionList across threads
|
sl@0
|
296 |
RFastLock iRcLock;
|
sl@0
|
297 |
|
sl@0
|
298 |
// A pointer to the private heap
|
sl@0
|
299 |
RHeap* iPrivateHeap;
|
sl@0
|
300 |
friend class CFileDesTransferSession;
|
sl@0
|
301 |
};
|
sl@0
|
302 |
|
sl@0
|
303 |
|
sl@0
|
304 |
class PosixFilesystem
|
sl@0
|
305 |
/*
|
sl@0
|
306 |
@internalComponent
|
sl@0
|
307 |
*/
|
sl@0
|
308 |
{
|
sl@0
|
309 |
public:
|
sl@0
|
310 |
static wchar_t* getcwd (RFs& aFs, wchar_t* buf, unsigned long len, int& anErrno);
|
sl@0
|
311 |
static int chdir (RFs& aFs, const wchar_t* path, int& anErrno);
|
sl@0
|
312 |
static int mkdir (RFs& aFs, const wchar_t* path, int perms, int& anErrno);
|
sl@0
|
313 |
static int rmdir (RFs& aFs, const wchar_t* path, int& anErrno);
|
sl@0
|
314 |
static int chmod (RFs& aFs, const wchar_t* path, int perms, int& anErrno);
|
sl@0
|
315 |
static int reg_unlink (RFs& aFs, const wchar_t* path, int& anErrno);
|
sl@0
|
316 |
static int stat (RFs& aFs, const wchar_t* name, struct stat* st, int& anErrno);
|
sl@0
|
317 |
static int rename (RFs& aFs, const wchar_t* oldname, const wchar_t* newname, int& anErrno);
|
sl@0
|
318 |
static TInt ResolvePath (RFs& aFs, TParse& aResult, const wchar_t* path, TDes* aFilename);
|
sl@0
|
319 |
static TInt SetDefaultDir (RFs& aFs);
|
sl@0
|
320 |
static int utime (RFs& aFs, const wchar_t* name, const struct utimbuf* filetimes, int& anErrno);
|
sl@0
|
321 |
};
|
sl@0
|
322 |
|
sl@0
|
323 |
|
sl@0
|
324 |
class TAccessPointRecord
|
sl@0
|
325 |
{
|
sl@0
|
326 |
public:
|
sl@0
|
327 |
TUint32 iId;
|
sl@0
|
328 |
TBuf<KCommsDbSvrMaxColumnNameLength> iName;
|
sl@0
|
329 |
TUint32 iDialogPref;
|
sl@0
|
330 |
TUint32 iDirection;
|
sl@0
|
331 |
TUint32 iService;
|
sl@0
|
332 |
TBuf<KCommsDbSvrMaxColumnNameLength> iServiceType;
|
sl@0
|
333 |
TUint32 iBearer;
|
sl@0
|
334 |
TBuf<KCommsDbSvrMaxColumnNameLength> iBearerType;
|
sl@0
|
335 |
TUint32 iNetwork;
|
sl@0
|
336 |
TUint32 iNetworkWeighting;
|
sl@0
|
337 |
TUint32 iLocation;
|
sl@0
|
338 |
public:
|
sl@0
|
339 |
TAccessPointRecord();
|
sl@0
|
340 |
|
sl@0
|
341 |
};
|
sl@0
|
342 |
|
sl@0
|
343 |
NONSHARABLE_CLASS(CLocalSystemInterface) : public CBase
|
sl@0
|
344 |
/*
|
sl@0
|
345 |
@internalComponent
|
sl@0
|
346 |
*/
|
sl@0
|
347 |
{
|
sl@0
|
348 |
public:
|
sl@0
|
349 |
|
sl@0
|
350 |
|
sl@0
|
351 |
IMPORT_C CLocalSystemInterface();
|
sl@0
|
352 |
IMPORT_C ~CLocalSystemInterface();
|
sl@0
|
353 |
|
sl@0
|
354 |
#ifdef __SYMBIAN_COMPILE_UNUSED__
|
sl@0
|
355 |
CLocalSystemInterface& Clone();
|
sl@0
|
356 |
void Release();
|
sl@0
|
357 |
void TerminateProcess(int status);
|
sl@0
|
358 |
#endif //__SYMBIAN_COMPILE_UNUSED__
|
sl@0
|
359 |
|
sl@0
|
360 |
int AddToDirList(DIR *aDir);
|
sl@0
|
361 |
int RemoveDirFromList(DIR* aDir);
|
sl@0
|
362 |
int FindInDirList(DIR* aDir);
|
sl@0
|
363 |
|
sl@0
|
364 |
void Exit(int code);
|
sl@0
|
365 |
|
sl@0
|
366 |
int dup (int fid, int& anErrno);
|
sl@0
|
367 |
int dup2 (int fid, int fid2, int& anErrno);
|
sl@0
|
368 |
int open (const wchar_t* name, int mode, int perms, int& anErrno);
|
sl@0
|
369 |
int read (int fid, char* buf, unsigned long len, int& anErrno);
|
sl@0
|
370 |
int write (int fid, const char* buf, unsigned long len, int& anErrno);
|
sl@0
|
371 |
int fsync (int fid, int& anErrno);
|
sl@0
|
372 |
int close (int fid, int& anErrno);
|
sl@0
|
373 |
int lseek (int fid, int offset, int whence, int& anErrno);
|
sl@0
|
374 |
int fstat (int fid, struct stat* st, int& anErrno);
|
sl@0
|
375 |
int ioctl (int fid, int cmd, void* param, int& anErrno);
|
sl@0
|
376 |
int ioctl (int fid, int cmd, void* param, TRequestStatus& aStatus, int& anErrno);
|
sl@0
|
377 |
int ioctl_complete (int fid, int cmd, void* param, TRequestStatus& aStatus, int& anErrno);
|
sl@0
|
378 |
|
sl@0
|
379 |
#ifdef __SYMBIAN_COMPILE_UNUSED__
|
sl@0
|
380 |
int ioctl_cancel (int fid, int& anErrno);
|
sl@0
|
381 |
#endif //__SYMBIAN_COMPILE_UNUSED__
|
sl@0
|
382 |
|
sl@0
|
383 |
wchar_t* getcwd (wchar_t* buf, unsigned long len, int& anErrno);
|
sl@0
|
384 |
|
sl@0
|
385 |
int chdir (const wchar_t* path, int& anErrno);
|
sl@0
|
386 |
int mkdir (const wchar_t* path, int perms, int& anErrno);
|
sl@0
|
387 |
int rmdir (const wchar_t* path, int& anErrno);
|
sl@0
|
388 |
int chmod (const wchar_t* path, int perms, int& anErrno);
|
sl@0
|
389 |
int stat (const wchar_t* name, struct stat* st, int& anErrno);
|
sl@0
|
390 |
int rename (const wchar_t* oldname, const wchar_t* newname, int& anErrno);
|
sl@0
|
391 |
|
sl@0
|
392 |
IMPORT_C TInt ResolvePath (TParse& aResult, const wchar_t* path, TDes* aFilename);
|
sl@0
|
393 |
int socket (int family, int style, int protocol, int& anErrno);
|
sl@0
|
394 |
int recvfrom (int fd, char* buf, unsigned long cnt, int flags, struct sockaddr* from, unsigned long* fromsize, int& anErrno);
|
sl@0
|
395 |
int sendto (int fd, const char* buf, unsigned long cnt, int flags, struct sockaddr* to, unsigned long tosize, int& anErrno);
|
sl@0
|
396 |
int shutdown (int fd, int how, int& anErrno);
|
sl@0
|
397 |
int listen (int fd, int n, int& anErrno);
|
sl@0
|
398 |
int accept (int fd, struct sockaddr *addr, size_t *size, int& anErrno);
|
sl@0
|
399 |
int bind (int fd, const struct sockaddr* addr, unsigned long size, int& anErrno);
|
sl@0
|
400 |
int connect (int fd, const struct sockaddr* addr, unsigned long size, int& anErrno);
|
sl@0
|
401 |
int sockname (int fd, struct sockaddr* addr, unsigned long* size, int anEnd, int& anErrno);
|
sl@0
|
402 |
int getsockopt (int fd, int level, int opt, void* buf, unsigned long* len, int& anErrno);
|
sl@0
|
403 |
int setsockopt (int fd, int level, int opt, void* buf, unsigned long len, int& anErrno);
|
sl@0
|
404 |
|
sl@0
|
405 |
int popen3 (const wchar_t *file, const wchar_t *cmd, wchar_t** envp, int fids[3], int& anErrno);
|
sl@0
|
406 |
int waitpid (int pid, int* status, int options, int& anErrno);
|
sl@0
|
407 |
|
sl@0
|
408 |
int fcntl (int aFid, int aCmd, long anArg, int& anErrno);
|
sl@0
|
409 |
int utime (const wchar_t* name, const struct utimbuf* filetimes, int& anErrno);
|
sl@0
|
410 |
|
sl@0
|
411 |
int popen (const wchar_t* file, const wchar_t* cmd, const char* mode, int& anErrno);
|
sl@0
|
412 |
int pclose (int aFid, int& anErrno);
|
sl@0
|
413 |
IMPORT_C void CheckOrigins (wchar_t**& wenvp, int& aCount);
|
sl@0
|
414 |
|
sl@0
|
415 |
int pipe (int fildes[2], int& anErrno );
|
sl@0
|
416 |
int mkfifo (const wchar_t *pathname, mode_t mode, int& anErrno);
|
sl@0
|
417 |
int link (const wchar_t *oldpathName, const wchar_t *newpathName, int& anErrno );
|
sl@0
|
418 |
int unlink (const wchar_t *pathName, int& anErrno );
|
sl@0
|
419 |
|
sl@0
|
420 |
int select (int maxfd, fd_set* readfds,fd_set* writefds,fd_set* exceptfds, struct timeval* tvptr, int& anErrno);
|
sl@0
|
421 |
|
sl@0
|
422 |
int system (const wchar_t* aCmd, const wchar_t* aCmdArg, int& anErrno );
|
sl@0
|
423 |
const wchar_t* GetDirName (int aFid);
|
sl@0
|
424 |
IMPORT_C int Truncate (int aFid, int anOffset, int& anErrno);
|
sl@0
|
425 |
int fchmod (int fd , mode_t perms, int& anErrno);
|
sl@0
|
426 |
|
sl@0
|
427 |
int posix_spawn (int* pid, const wchar_t* wpath,
|
sl@0
|
428 |
const posix_spawn_file_actions_t* file_actions,
|
sl@0
|
429 |
const posix_spawnattr_t* attrp,
|
sl@0
|
430 |
const wchar_t* wargs, wchar_t** wenvp);
|
sl@0
|
431 |
|
sl@0
|
432 |
int SetEcho(int aFd, TUint8 aEcho, int& aErrno);
|
sl@0
|
433 |
|
sl@0
|
434 |
//Set the default interface for network operations
|
sl@0
|
435 |
int setdefaultif(const struct ifreq* aIfReq);
|
sl@0
|
436 |
|
sl@0
|
437 |
IMPORT_C CFileDescBase* GetDesc(int aFid);
|
sl@0
|
438 |
|
sl@0
|
439 |
// functions returning session to File Server
|
sl@0
|
440 |
IMPORT_C RFs& FileSession();
|
sl@0
|
441 |
RCommServ& CommServSession();
|
sl@0
|
442 |
RSocketServ& SockServSession();
|
sl@0
|
443 |
|
sl@0
|
444 |
//Dynamic Memory related APIs
|
sl@0
|
445 |
IMPORT_C void* Alloc(size_t aNBytes);
|
sl@0
|
446 |
IMPORT_C void* ReAlloc(void* aPtr, size_t aNBytes);
|
sl@0
|
447 |
IMPORT_C void Free(void* aPtr);
|
sl@0
|
448 |
IMPORT_C void* AllocTLD(TInt aSize);
|
sl@0
|
449 |
|
sl@0
|
450 |
//Return the private Heap memory
|
sl@0
|
451 |
IMPORT_C RHeap* Heap();
|
sl@0
|
452 |
|
sl@0
|
453 |
//Return the Comms Server Lock
|
sl@0
|
454 |
RFastLock& CommsSessionLock();
|
sl@0
|
455 |
|
sl@0
|
456 |
//Return reference to file table
|
sl@0
|
457 |
const CFileTable& FileTable() const;
|
sl@0
|
458 |
|
sl@0
|
459 |
//Get the default connection (RConnection) instance
|
sl@0
|
460 |
RConnection& GetDefaultConnection();
|
sl@0
|
461 |
|
sl@0
|
462 |
static void WaitForNRequest(TRequestStatus aStatusArray[], TInt aNum);
|
sl@0
|
463 |
|
sl@0
|
464 |
private:
|
sl@0
|
465 |
//Helper function to read a record from the IAP table
|
sl@0
|
466 |
void ReadRecordFromIapTableL(CCommsDbTableView* aView, TAccessPointRecord &aRecord);
|
sl@0
|
467 |
//Get the connection preferences from an IAP name
|
sl@0
|
468 |
TInt GetConnectionPreferencesL(TBuf<KCommsDbSvrMaxColumnNameLength> aIapName,
|
sl@0
|
469 |
TCommDbConnPref &aConnPref);
|
sl@0
|
470 |
|
sl@0
|
471 |
private:
|
sl@0
|
472 |
// NOTE: iCleanup should be the first member of CLSI, since iPrivateHeap
|
sl@0
|
473 |
// will be destroyed from within iCleanup destructor.
|
sl@0
|
474 |
TCLSICleanup iCleanup;
|
sl@0
|
475 |
|
sl@0
|
476 |
CFileTable iFids;
|
sl@0
|
477 |
|
sl@0
|
478 |
RFs iFs;
|
sl@0
|
479 |
RSocketServ iSs;
|
sl@0
|
480 |
RCommServ iCs;
|
sl@0
|
481 |
|
sl@0
|
482 |
//Lock for protecting Socket Session across threads
|
sl@0
|
483 |
RFastLock iSSLock;
|
sl@0
|
484 |
//Lock for protecting Comms Session across threads
|
sl@0
|
485 |
RFastLock iCSLock;
|
sl@0
|
486 |
|
sl@0
|
487 |
//Private Heap which will be used by the library for all memory allocation
|
sl@0
|
488 |
RHeap* iPrivateHeap;
|
sl@0
|
489 |
|
sl@0
|
490 |
//used for Opendir
|
sl@0
|
491 |
const static TInt KDirGran = 2;
|
sl@0
|
492 |
RPointerArray<TAny> iOpenDirList;
|
sl@0
|
493 |
|
sl@0
|
494 |
//in class consts
|
sl@0
|
495 |
const static TInt KTLDInfoListGran = 4;
|
sl@0
|
496 |
const static TInt KPtrsGran = 2;
|
sl@0
|
497 |
|
sl@0
|
498 |
//Thread-TLS pointers mapping
|
sl@0
|
499 |
class TTLDInfo
|
sl@0
|
500 |
{
|
sl@0
|
501 |
public:
|
sl@0
|
502 |
TTLDInfo(TThreadId id, TAny* ptr) : iTid(id), iPtrs(CLocalSystemInterface::KPtrsGran)
|
sl@0
|
503 |
{
|
sl@0
|
504 |
iPtrs.Append(ptr);
|
sl@0
|
505 |
}
|
sl@0
|
506 |
void Close(RHeap* pHeap)
|
sl@0
|
507 |
{
|
sl@0
|
508 |
TInt nptrs = iPtrs.Count();
|
sl@0
|
509 |
for (TInt j = 0; j < nptrs; ++j)
|
sl@0
|
510 |
{
|
sl@0
|
511 |
pHeap->Free(iPtrs[j]);
|
sl@0
|
512 |
}
|
sl@0
|
513 |
iPtrs.Close();
|
sl@0
|
514 |
}
|
sl@0
|
515 |
TThreadId iTid;
|
sl@0
|
516 |
RPointerArray<TAny> iPtrs;
|
sl@0
|
517 |
};
|
sl@0
|
518 |
|
sl@0
|
519 |
//Array of Thread-TLS pointers mappings
|
sl@0
|
520 |
RArray<TTLDInfo> iTLDInfoList;
|
sl@0
|
521 |
|
sl@0
|
522 |
//Protect the array from concurrent access
|
sl@0
|
523 |
RFastLock iTLDListLock;
|
sl@0
|
524 |
|
sl@0
|
525 |
//The default connection to be used for all network apis.
|
sl@0
|
526 |
RConnection iDefConnection;
|
sl@0
|
527 |
|
sl@0
|
528 |
public:
|
sl@0
|
529 |
//ipc server session
|
sl@0
|
530 |
RIpcSession iIpcS;
|
sl@0
|
531 |
friend class RFileDesTransferSession;
|
sl@0
|
532 |
};
|
sl@0
|
533 |
|
sl@0
|
534 |
|
sl@0
|
535 |
/*
|
sl@0
|
536 |
* Return global backend object to libraries
|
sl@0
|
537 |
*/
|
sl@0
|
538 |
IMPORT_C CLocalSystemInterface* Backend();
|
sl@0
|
539 |
|
sl@0
|
540 |
|
sl@0
|
541 |
|
sl@0
|
542 |
|
sl@0
|
543 |
// LIBC-BACKEND specific Symbian Error Codes
|
sl@0
|
544 |
const TInt KErrMaxFdOpened = -1025;
|
sl@0
|
545 |
const TInt KErrDirectoryOpen = -1026;
|
sl@0
|
546 |
|
sl@0
|
547 |
|
sl@0
|
548 |
|
sl@0
|
549 |
// Directory enumeration
|
sl@0
|
550 |
|
sl@0
|
551 |
NONSHARABLE_STRUCT(__EPOC32_WDIR) : public CBase // aka "class __EPOC32_WDIR with everything public"
|
sl@0
|
552 |
{
|
sl@0
|
553 |
public:
|
sl@0
|
554 |
__EPOC32_WDIR() {}
|
sl@0
|
555 |
~__EPOC32_WDIR();
|
sl@0
|
556 |
|
sl@0
|
557 |
TInt Open();
|
sl@0
|
558 |
TInt Open(const TDesC& aPath);
|
sl@0
|
559 |
TInt Open(const wchar_t *_path,int*);
|
sl@0
|
560 |
virtual TInt UpdateNarrow();
|
sl@0
|
561 |
HBufC* iPath;
|
sl@0
|
562 |
CDir* iEntries;
|
sl@0
|
563 |
TInt iIndex; // counting down, 0 means "finished"
|
sl@0
|
564 |
struct wdirent iCurrent;
|
sl@0
|
565 |
TInt iCount ;
|
sl@0
|
566 |
TBuf16<KMaxFileName> iCurrentName;
|
sl@0
|
567 |
/* *****************************************************************
|
sl@0
|
568 |
Overloading new and delete operators so that they will
|
sl@0
|
569 |
allocate and deallocare memory from/to the private heap of backend
|
sl@0
|
570 |
********************************************************************/
|
sl@0
|
571 |
inline TAny* operator new(TUint aSize, TAny* aBase) __NO_THROW
|
sl@0
|
572 |
{
|
sl@0
|
573 |
Mem::FillZ(aBase, aSize); return aBase;
|
sl@0
|
574 |
}
|
sl@0
|
575 |
|
sl@0
|
576 |
inline TAny* operator new(TUint aSize) __NO_THROW
|
sl@0
|
577 |
{
|
sl@0
|
578 |
return Backend()->Alloc(aSize);
|
sl@0
|
579 |
}
|
sl@0
|
580 |
|
sl@0
|
581 |
inline TAny* operator new(TUint aSize, TLeave)
|
sl@0
|
582 |
{
|
sl@0
|
583 |
TAny* ptr = Backend()->Alloc(aSize);
|
sl@0
|
584 |
if (ptr == NULL)
|
sl@0
|
585 |
{
|
sl@0
|
586 |
User::Leave(KErrNoMemory);
|
sl@0
|
587 |
}
|
sl@0
|
588 |
return ptr;
|
sl@0
|
589 |
}
|
sl@0
|
590 |
|
sl@0
|
591 |
inline TAny* operator new(TUint aSize, TUint aExtraSize) __NO_THROW
|
sl@0
|
592 |
{
|
sl@0
|
593 |
return Backend()->Alloc(aSize + aExtraSize);
|
sl@0
|
594 |
}
|
sl@0
|
595 |
|
sl@0
|
596 |
inline TAny* operator new(TUint aSize, TLeave, TUint aExtraSize)
|
sl@0
|
597 |
{
|
sl@0
|
598 |
TAny* ptr = Backend()->Alloc(aSize + aExtraSize);
|
sl@0
|
599 |
if (ptr == NULL)
|
sl@0
|
600 |
{
|
sl@0
|
601 |
User::Leave(KErrNoMemory);
|
sl@0
|
602 |
}
|
sl@0
|
603 |
return ptr;
|
sl@0
|
604 |
}
|
sl@0
|
605 |
|
sl@0
|
606 |
inline void operator delete(TAny *aPtr) __NO_THROW
|
sl@0
|
607 |
{
|
sl@0
|
608 |
Backend()->Free( aPtr );
|
sl@0
|
609 |
}
|
sl@0
|
610 |
};
|
sl@0
|
611 |
|
sl@0
|
612 |
NONSHARABLE_STRUCT(__EPOC32_DIR) : public __EPOC32_WDIR
|
sl@0
|
613 |
{
|
sl@0
|
614 |
public:
|
sl@0
|
615 |
__EPOC32_DIR(){}
|
sl@0
|
616 |
~__EPOC32_DIR(){}
|
sl@0
|
617 |
|
sl@0
|
618 |
virtual TInt UpdateNarrow();
|
sl@0
|
619 |
struct dirent iCurrentNarrow;
|
sl@0
|
620 |
TBuf8<KMaxFileName> iCurrentNarrowName;
|
sl@0
|
621 |
};
|
sl@0
|
622 |
|
sl@0
|
623 |
NONSHARABLE_STRUCT (_iconv_t)
|
sl@0
|
624 |
{
|
sl@0
|
625 |
TUint toCode;
|
sl@0
|
626 |
TUint fromCode;
|
sl@0
|
627 |
};
|
sl@0
|
628 |
|
sl@0
|
629 |
class TUSockAddr : public TSockAddr
|
sl@0
|
630 |
/*
|
sl@0
|
631 |
Utility class for converting struct sockaddr to and from EPOC32 TSockAddr
|
sl@0
|
632 |
@internalComponent
|
sl@0
|
633 |
*/
|
sl@0
|
634 |
{
|
sl@0
|
635 |
public:
|
sl@0
|
636 |
TUSockAddr() : TSockAddr(), iError(0) {}
|
sl@0
|
637 |
|
sl@0
|
638 |
TUSockAddr(TAny* addr); // constructor form of Prepare
|
sl@0
|
639 |
IMPORT_C TUSockAddr(const TAny* addr, TUint len); // constructor form of Set
|
sl@0
|
640 |
private:
|
sl@0
|
641 |
void Prepare(TAny* addr);
|
sl@0
|
642 |
void Set(const TAny* addr, TUint len);
|
sl@0
|
643 |
public:
|
sl@0
|
644 |
IMPORT_C void Get(TAny* addr, unsigned long* len);
|
sl@0
|
645 |
public:
|
sl@0
|
646 |
TInt iError; // To store error status of TUSockAddr functions, refers errno.h. Notebly not Symbian error codes.
|
sl@0
|
647 |
};
|
sl@0
|
648 |
|
sl@0
|
649 |
#endif //SYSIF_H
|
sl@0
|
650 |
|