sockio.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _SOCKIO_H_
  36. #define _SOCKIO_H_
  37. #ifndef _MAC_MACHO
  38. #include "platform/mac/oterrs.h"
  39. #endif
  40. //#include "OpenTransport.h" 
  41. #include "bio.h"
  42. #include "platform/mac/macsockets.h"
  43. #ifndef _PN_MACHDEP_H_ // because of the mish-mash of precompiler hell, we do this this way
  44. #include <errno.h>
  45. #define sock_error() (errno)
  46. #endif
  47. class SockFd;
  48. #ifndef INADDR_NONE
  49. #define INADDR_NONE (-1)
  50. #endif /* ndef INADDR_NONE */
  51. class mIO {
  52. public:
  53. mIO() {fd = -1; err = 0;}
  54. ~mIO() {}
  55. protected:
  56.     INT16 fd;
  57.     INT16 err;
  58.     INT16 _flags;
  59. };
  60. #ifdef DEFINED_ELSEWHERE
  61. class IO {
  62. public:
  63. IO();
  64.     virtual ~IO();
  65.     virtual INT16 read(void* buf, INT32 size) = 0;
  66.     virtual INT16 write(const void* buf, INT32 size) = 0;
  67.     virtual off_t seek(off_t off, INT32 whence) = 0;
  68.     virtual INT32 close() = 0;
  69.     virtual INT16 ioctl(UINT32 request, char* arg) = 0;
  70.     virtual INT16 status(struct stat *st) = 0;
  71.     INT16 filenum();
  72.     INT16 error();
  73.     INT16 flags();
  74. protected:
  75.     INT16 fd;
  76.     INT16 err;
  77.     INT16 _flags;
  78. };
  79. inline
  80. IO::IO() {
  81.     fd = -1;
  82.     err = 0;
  83. }
  84. inline INT16
  85. IO::filenum() {
  86.     return fd;
  87. }
  88. inline INT16
  89. IO::error() {
  90.     return err;
  91. }
  92. inline INT16
  93. IO::flags() {
  94.     return _flags;
  95. }
  96. #endif //DEFINED_ELSEWHERE
  97. #ifdef DEFINED_ELSEWHERE
  98. inline
  99. IO::~IO() {
  100. }
  101. #endif
  102. class File_IO : public IO, mIO {
  103. public:
  104. File_IO(const char* file, INT16 flags, mode_t mode = 0666);
  105. File_IO(INT16 fd, INT16 flags);
  106. ~File_IO();
  107.     INT16 ioctl(UINT32 request, char* arg);
  108.     INT32 close();
  109.     INT32 read(void* buf, INT32 size);
  110.     INT32 write(const void* buf, INT32 size);
  111.     off_t seek(off_t off, INT32 whence);
  112.     INT16 status(struct stat *st);
  113.     off_t file_size();
  114. #ifdef _MACINTOSH
  115. private:
  116.     void *mFile; // pointer to the actual Mac file object
  117. #endif
  118. };
  119. struct SocketIO: public IO,mIO {
  120. SocketIO();
  121. ~SocketIO();
  122.     static INT32 create_address(struct sockaddr_in& addr, char* host,
  123.        INT16 port);
  124.     INT32 init(INT32 type, INT16 port, BOOL do_block=TRUE, 
  125.      BOOL reuse_addr=TRUE, BOOL reuse_port=FALSE);
  126. //    INT32 init(INT16 type, INT16 port, INT16 do_block=1);
  127.     INT32 listen(INT32 backlog);
  128.     INT32 connect(char* host, INT16 port);
  129.     INT32 connect(sockaddr_in *addr);
  130.     INT16 accept(sockaddr_in *addr, INT32* addrlen);
  131.     INT32 bind(sockaddr_in*);
  132.     INT32 blocking();
  133.     INT32 nonblocking();
  134.     INT32 getsockname(sockaddr_in* addr, INT32* addr_len);
  135. //    INT32 ioctl(UINT32 request, char* arg);
  136.     INT32 close();
  137.     INT32 read(void* buf, INT32 size);
  138.     INT32 write(const void* buf, INT32 size);
  139.     off_t seek(off_t off, INT32 whence);
  140.     INT16 port();
  141.     INT32 disable();
  142.     INT32 reuse_port(BOOL enable);
  143.     INT32 reuse_addr(BOOL enable);
  144.     INT32 error();
  145.     INT32 flags();
  146. //    virtual SOCKET socket();
  147.     off_t file_size();
  148.     static const UINT32 MAX_HOSTNAME_LEN;
  149.     static INT16 gethostname(char* name, INT16 count);
  150.     void start_write();
  151.     void stop_write();
  152.     INT16 status(struct stat *st);
  153.     INT16  socknum();
  154.     
  155.     INT16 sock;
  156.     INT32 do_write;
  157.     SockFd* sock_fd;
  158.     
  159. #ifdef _MACINTOSH
  160. protected:
  161.     void *mSocket; // ptr to the actual Mac network socket
  162.     INT16 mBackLog; // accepting socket backlog
  163. #endif
  164. };
  165. // XXX does not belong in the SocketIO class
  166. inline void
  167. SocketIO::stop_write() {
  168.     do_write = 0;
  169. }
  170. // XXX does not belong in the SocketIO class
  171. inline void
  172. SocketIO::start_write() {
  173.     do_write = 1;
  174. }
  175. inline INT16
  176. SocketIO::socknum()
  177. {
  178.     return sock;
  179. }
  180. inline INT32
  181. SocketIO::disable()
  182. {
  183.     sock = -2;
  184.     return 0;
  185. }
  186. struct UDP_IO: public SocketIO {
  187. UDP_IO(SockFd* s);
  188.     INT16 init(INT16 port, INT16 do_block=1);
  189.     INT16 connect(char* host, INT16 port, INT16 do_block=1);
  190.     INT16 connect(sockaddr_in *addr, INT16 do_block=1);
  191.     INT16 recvfrom(void *buf, size_t len, INT16 flags,
  192.  sockaddr *from,INT16 *fromlen);
  193.     INT16 recvfrom(void *buf, size_t len, INT16 flags,
  194.  sockaddr_in *from,INT16 *fromlen);
  195.     INT16 sendto(const char* msg, size_t len, INT16 flags,
  196.        const struct sockaddr_in *to, INT16 tolen);
  197. };
  198. struct TCP_IO: public SocketIO {
  199. TCP_IO(SockFd* s);
  200. TCP_IO(INT16 conn, SockFd* s);
  201.     INT16 init(INT16 port, INT16 do_block=1);
  202.     INT16 connect(char* host, INT16 port, INT16 do_block=1);
  203.     INT16 connect(sockaddr_in *addr, INT16 do_block=1);
  204.     INT16 listen(INT16 port, INT16 backlog, INT16 do_block=1);
  205.     INT16 reset_on_kill();
  206. };
  207. // XXX abstract out the interface so that MWERKS def is not needed
  208. inline INT16
  209. SocketIO::gethostname(char* name, INT16 count)
  210. {
  211. INT16 result = ::gethostname(name, count);
  212.     if (result < 0) return sock_error();
  213.     return 0;
  214. }
  215. #undef sock_error
  216. #endif/*_SOCKIO_H_*/