home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _eca74cc19098bb4491112165ecf2dec5 < prev    next >
Text File  |  2000-03-23  |  12KB  |  262 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>HTTP::Daemon - a simple http server class</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> HTTP::Daemon - a simple http server class</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#methods">METHODS</A></LI>
  26.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  27.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>HTTP::Daemon - a simple http server class</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  38. <UL>
  39. <LI>Linux</LI>
  40. <LI>Solaris</LI>
  41. <LI>Windows</LI>
  42. </UL>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <PRE>
  46.   use HTTP::Daemon;
  47.   use HTTP::Status;</PRE>
  48. <PRE>
  49.   my $d = new HTTP::Daemon;
  50.   print "Please contact me at: <URL:", $d->url, ">\n";
  51.   while (my $c = $d->accept) {
  52.       while (my $r = $c->get_request) {
  53.           if ($r->method eq 'GET' and $r->url->path eq "/xyzzy") {
  54.               # remember, this is *not* recommened practice :-)
  55.               $c->send_file_response("/etc/passwd");
  56.           } else {
  57.               $c->send_error(RC_FORBIDDEN)
  58.           }
  59.       }
  60.       $c->close;
  61.       undef($c);
  62.   }</PRE>
  63. <P>
  64. <HR>
  65. <H1><A NAME="description">DESCRIPTION</A></H1>
  66. <P>Instances of the <EM>HTTP::Daemon</EM> class are HTTP/1.1 servers that
  67. listen on a socket for incoming requests. The <EM>HTTP::Daemon</EM> is a
  68. sub-class of <EM>IO::Socket::INET</EM>, so you can perform socket operations
  69. directly on it too.</P>
  70. <P>The <A HREF="#item_accept"><CODE>accept()</CODE></A> method will return when a connection from a client is
  71. available. The returned value will be a reference to a object of the
  72. <EM>HTTP::Daemon::ClientConn</EM> class which is another <EM>IO::Socket::INET</EM>
  73. subclass. Calling the <A HREF="#item_get_request"><CODE>get_request()</CODE></A> method on this object will read
  74. data from the client and return an <EM>HTTP::Request</EM> object reference.</P>
  75. <P>This HTTP daemon does not <A HREF="../../../lib/Pod/perlfunc.html#item_fork"><CODE>fork(2)</CODE></A> for you.  Your application, i.e. the
  76. user of the <EM>HTTP::Daemon</EM> is reponsible for forking if that is
  77. desirable.  Also note that the user is responsible for generating
  78. responses that conform to the HTTP/1.1 protocol.  The
  79. <EM>HTTP::Daemon::ClientConn</EM> class provides some methods that make this easier.</P>
  80. <P>
  81. <HR>
  82. <H1><A NAME="methods">METHODS</A></H1>
  83. <P>The following is a list of methods that are new (or enhanced) relative
  84. to the <EM>IO::Socket::INET</EM> base class.</P>
  85. <DL>
  86. <DT><STRONG><A NAME="item_%24d_%3D_new_HTTP%3A%3ADaemon">$d = new HTTP::Daemon</A></STRONG><BR>
  87. <DD>
  88. The constructor takes the same parameters as the
  89. <EM>IO::Socket::INET</EM> constructor.  It can also be called without specifying
  90. any parameters. The daemon will then set up a listen queue of 5
  91. connections and allocate some random port number.  A server that wants
  92. to bind to some specific address on the standard HTTP port will be
  93. constructed like this:
  94. <PRE>
  95.   $d = new HTTP::Daemon
  96.         LocalAddr => 'www.someplace.com',
  97.         LocalPort => 80;</PRE>
  98. <P></P>
  99. <DT><STRONG><A NAME="item_accept">$c = $d-><CODE>accept([$pkg])</CODE></A></STRONG><BR>
  100. <DD>
  101. This method is the same as <EM>IO::Socket::accept</EM> but returns an
  102. <EM>HTTP::Daemon::ClientConn</EM> reference by default.  It returns
  103. undef if you specify a timeout and no connection is made within
  104. that time.
  105. <P></P>
  106. <DT><STRONG><A NAME="item_url">$d->url</A></STRONG><BR>
  107. <DD>
  108. Returns a URL string that can be used to access the server root.
  109. <P></P>
  110. <DT><STRONG><A NAME="item_product_tokens">$d->product_tokens</A></STRONG><BR>
  111. <DD>
  112. Returns the name that this server will use to identify itself.  This
  113. is the string that is sent with the <EM>Server</EM> response header.  The
  114. main reason to have this method is that subclasses can override it if
  115. they want to use another product name.
  116. <P></P></DL>
  117. <P>The <EM>HTTP::Daemon::ClientConn</EM> is also a <EM>IO::Socket::INET</EM>
  118. subclass. Instances of this class are returned by the <A HREF="#item_accept"><CODE>accept()</CODE></A> method
  119. of <EM>HTTP::Daemon</EM>.  The following additional methods are
  120. provided:</P>
  121. <DL>
  122. <DT><STRONG><A NAME="item_get_request">$c-><CODE>get_request([$headers_only])</CODE></A></STRONG><BR>
  123. <DD>
  124. Read data from the client and turn it into an
  125. <EM>HTTP::Request</EM> object which is then returned.  It returns <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>
  126. if reading of the request fails.  If it fails, then the
  127. <EM>HTTP::Daemon::ClientConn</EM> object ($c) should be discarded, and you
  128. should not call this method again.  The $c->reason method might give
  129. you some information about why $c->get_request returned <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>.
  130. <P>The $c->get_request method supports HTTP/1.1 request content bodies,
  131. including <EM>chunked</EM> transfer encoding with footer and self delimiting
  132. <EM>multipart/*</EM> content types.</P>
  133. <P>The $c->get_request method will normally not return until the whole
  134. request has been received from the client.  This might not be what you
  135. want if the request is an upload of a multi-mega-byte file (and with
  136. chunked transfer encoding HTTP can even support infinite request
  137. messages - uploading live audio for instance).  If you pass a TRUE
  138. value as the $headers_only argument, then $c->get_request will return
  139. immediately after parsing the request headers and you are responsible
  140. for reading the rest of the request content.  If you are going to
  141. call $c->get_request again on the same connection you better read the
  142. correct number of bytes.</P>
  143. <P></P>
  144. <DT><STRONG><A NAME="item_read_buffer">$c-><CODE>read_buffer([$new_value])</CODE></A></STRONG><BR>
  145. <DD>
  146. Bytes read by $c->get_request, but not used are placed in the <EM>read
  147. buffer</EM>.  The next time $c->get_request is called it will consume the
  148. bytes in this buffer before reading more data from the network
  149. connection itself.  The read buffer is invalid after $c->get_request
  150. has returned an undefined value.
  151. <P>If you handle the reading of the request content yourself you need to
  152. empty this buffer before you read more and you need to place
  153. unconsumed bytes here.  You also need this buffer if you implement
  154. services like <EM>101 Switching Protocols</EM>.</P>
  155. <P>This method always return the old buffer content and can optionally
  156. replace the buffer content if you pass it an argument.</P>
  157. <P></P>
  158. <DT><STRONG><A NAME="item_reason">$c->reason</A></STRONG><BR>
  159. <DD>
  160. When $c->get_request returns <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> you can obtain a short string
  161. describing why it happened by calling $c->reason.
  162. <P></P>
  163. <DT><STRONG><A NAME="item_proto_ge">$c-><CODE>proto_ge($proto)</CODE></A></STRONG><BR>
  164. <DD>
  165. Return TRUE if the client announced a protocol with version number
  166. greater or equal to the given argument.  The $proto argument can be a
  167. string like ``HTTP/1.1'' or just ``1.1''.
  168. <P></P>
  169. <DT><STRONG><A NAME="item_antique_client">$c->antique_client</A></STRONG><BR>
  170. <DD>
  171. Return TRUE if the client speaks the HTTP/0.9 protocol.  No status
  172. code and no headers should be returned to such a client.  This should
  173. be the same as !$c->proto_ge(``HTTP/1.0'').
  174. <P></P>
  175. <DT><STRONG><A NAME="item_force_last_request">$c->force_last_request</A></STRONG><BR>
  176. <DD>
  177. Make sure that $c->get_request will not try to read more requests off
  178. this connection.  If you generate a response that is not self
  179. delimiting, then you should signal this fact by calling this method.
  180. <P>This attribute is turned on automatically if the client announces
  181. protocol HTTP/1.0 or worse and does not include a ``Connection:
  182. Keep-Alive'' header.  It is also turned on automatically when HTTP/1.1
  183. or better clients send the ``Connection: close'' request header.</P>
  184. <P></P>
  185. <DT><STRONG><A NAME="item_send_status_line">$c->send_status_line( [$code, [$mess, [$proto]]] )</A></STRONG><BR>
  186. <DD>
  187. Send the status line back to the client.  If $code is omitted 200 is
  188. assumed.  If $mess is omitted, then a message corresponding to $code
  189. is inserted.  If $proto is missing the content of the
  190. $HTTP::Daemon::PROTO variable is used.
  191. <P></P>
  192. <DT><STRONG><A NAME="item_send_crlf">$c->send_crlf</A></STRONG><BR>
  193. <DD>
  194. Send the CRLF sequence to the client.
  195. <P></P>
  196. <DT><STRONG><A NAME="item_send_basic_header">$c->send_basic_header( [$code, [$mess, [$proto]]] )</A></STRONG><BR>
  197. <DD>
  198. Send the status line and the ``Date:'' and ``Server:'' headers back to
  199. the client.  This header is assumed to be continued and does not end
  200. with an empty CRLF line.
  201. <P></P>
  202. <DT><STRONG><A NAME="item_send_response">$c->send_response( [$res] )</A></STRONG><BR>
  203. <DD>
  204. Write a <EM>HTTP::Response</EM> object to the
  205. client as a response.  We try hard to make sure that the response is
  206. self delimiting so that the connection can stay persistent for further
  207. request/response exchanges.
  208. <P>The content attribute of the <EM>HTTP::Response</EM> object can be a normal
  209. string or a subroutine reference.  If it is a subroutine, then
  210. whatever this callback routine returns is written back to the
  211. client as the response content.  The routine will be called until it
  212. return an undefined or empty value.  If the client is HTTP/1.1 aware
  213. then we will use chunked transfer encoding for the response.</P>
  214. <P></P>
  215. <DT><STRONG><A NAME="item_send_redirect">$c->send_redirect( $loc, [$code, [$entity_body]] )</A></STRONG><BR>
  216. <DD>
  217. Send a redirect response back to the client.  The location ($loc) can
  218. be an absolute or relative URL. The $code must be one the redirect
  219. status codes, and defaults to ``301 Moved Permanently''
  220. <P></P>
  221. <DT><STRONG><A NAME="item_send_error">$c->send_error( [$code, [$error_message]] )</A></STRONG><BR>
  222. <DD>
  223. Send an error response back to the client.  If the $code is missing a
  224. ``Bad Request'' error is reported.  The $error_message is a string that
  225. is incorporated in the body of the HTML entity body.
  226. <P></P>
  227. <DT><STRONG><A NAME="item_send_file_response">$c-><CODE>send_file_response($filename)</CODE></A></STRONG><BR>
  228. <DD>
  229. Send back a response with the specified $filename as content.  If the
  230. file is a directory we try to generate an HTML index of it.
  231. <P></P>
  232. <DT><STRONG><A NAME="item_send_file">$c->send_file($fd);</A></STRONG><BR>
  233. <DD>
  234. Copy the file to the client.  The file can be a string (which
  235. will be interpreted as a filename) or a reference to an <EM>IO::Handle</EM>
  236. or glob.
  237. <P></P>
  238. <DT><STRONG><A NAME="item_daemon">$c->daemon</A></STRONG><BR>
  239. <DD>
  240. Return a reference to the corresponding <EM>HTTP::Daemon</EM> object.
  241. <P></P></DL>
  242. <P>
  243. <HR>
  244. <H1><A NAME="see also">SEE ALSO</A></H1>
  245. <P>RFC 2068</P>
  246. <P><A HREF="../../../lib/IO/Socket.html">the IO::Socket manpage</A>, <A HREF="../../../lib/CGI/Apache.html">the Apache manpage</A></P>
  247. <P>
  248. <HR>
  249. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  250. <P>Copyright 1996-1998, Gisle Aas</P>
  251. <P>This library is free software; you can redistribute it and/or
  252. modify it under the same terms as Perl itself.</P>
  253. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  254. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  255. <STRONG><P CLASS=block> HTTP::Daemon - a simple http server class</P></STRONG>
  256. </TD></TR>
  257. </TABLE>
  258.  
  259. </BODY>
  260.  
  261. </HTML>
  262.