summaryrefslogtreecommitdiff
path: root/examples/Web_Crawler/URL_Addr.h
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-03 20:18:07 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-03 20:18:07 +0000
commit548acc548ea4e483831669f45b2833299a73196b (patch)
tree57815562fd64d0c2fda9ca9a15456e5b01953f06 /examples/Web_Crawler/URL_Addr.h
parent5ba4e943863b8a056d3cd8ddc04f773339ad43ce (diff)
downloadATCD-548acc548ea4e483831669f45b2833299a73196b.tar.gz
part of HTTP_1.1_Client
Diffstat (limited to 'examples/Web_Crawler/URL_Addr.h')
-rw-r--r--examples/Web_Crawler/URL_Addr.h108
1 files changed, 108 insertions, 0 deletions
diff --git a/examples/Web_Crawler/URL_Addr.h b/examples/Web_Crawler/URL_Addr.h
new file mode 100644
index 00000000000..c67772f243b
--- /dev/null
+++ b/examples/Web_Crawler/URL_Addr.h
@@ -0,0 +1,108 @@
+/* -*- C++ -*- */
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// ace
+//
+// = FILENAME
+// URL_Addr.h
+//
+// = AUTHOR
+// Douglas C. Schmidt <schmidt@cs.wustl.edu>
+//
+// ============================================================================
+
+#ifndef ACE_URL_ADDR_H
+#define ACE_URL_ADDR_H
+
+#include "ace/INET_Addr.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+#define ACE_LACKS_PRAGMA_ONCE
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+class ACE_URL_Addr : public ACE_INET_Addr
+{
+ // = TITLE
+ // Defines a URL address family address format.
+public:
+ // = Initialization and termination methods.
+ ACE_URL_Addr (void);
+ // Constructor.
+
+ ACE_URL_Addr (LPCTSTR host_name,
+ LPCTSTR path_name,
+ u_short port = ACE_DEFAULT_HTTP_PORT);
+
+ ACE_URL_Addr (const ACE_URL_Addr &addr);
+ // Copy constructor.
+
+ int set (const ACE_URL_Addr &addr);
+ // Essentially the copy constructor.
+
+ virtual int string_to_addr (LPCTSTR address);
+ // Initializes an <ACE_URL_Addr> from the <address>, which can be
+ // "ip-number:port-number/path-name" (e.g.,
+ // "tango.cs.wustl.edu:1234/~schmidt/" "ip-number:port-number/path-name"
+ // (e.g., "128.252.166.57:1234/~schmidt"). If there is no ':' in
+ // the <address> it is assumed to be an ip-number or ip-address
+ // number, with the port number <ACE_DEFAULT_HTTP_PORT>.
+
+ virtual int addr_to_string (LPTSTR s,
+ size_t size,
+ int ipaddr_format = 1) const;
+ // Transform the current <ACE_INET_Addr> address into string format.
+ // If <ipaddr_format> is non-0 this produces
+ // "ip-number:port-number/path-name" (e.g.,
+ // "128.252.166.57:80/~schmidt/"), whereas if <ipaddr_format> is 0
+ // this produces "ip-name:port-number" (e.g.,
+ // "tango.cs.wustl.edu:80/~schmidt/"). Returns -1 if the <size> of
+ // the <buffer> is too small, else 0.
+
+ virtual LPCTSTR addr_to_string (int ipaddr_format = 1) const;
+ // Transform the current <ACE_INET_Addr> address into string format.
+ // If <ipaddr_format> is non-0 this produces
+ // "ip-number:port-number/path-name" (e.g.,
+ // "128.252.166.57:80/~schmidt/"), whereas if <ipaddr_format> is 0
+ // this produces "ip-name:port-number" (e.g.,
+ // "tango.cs.wustl.edu:80/~schmidt/"). Uses dynamic memory, which
+ // is allocated on demand and deallocated when the object is
+ // destroyed. Returns -1 if dynamic memory fails, else 0.
+
+ void operator= (const ACE_URL_Addr &addr);
+ // Assignment operator.
+
+ ~ACE_URL_Addr (void);
+ // Destructor.
+
+ int operator == (const ACE_URL_Addr &SAP) const;
+ // Compare two addresses for equality. The addresses are considered
+ // equal if they contain the same IP address, port number, and path
+ // name.
+
+ int operator != (const ACE_URL_Addr &SAP) const;
+ // Compare two addresses for inequality.
+
+ virtual u_long hash (void) const;
+ // Computes and returns hash value.
+
+ LPCTSTR get_path_name (void) const;
+ // Return the path name.
+
+ int destroy (void);
+ // Commit suicide.
+private:
+ LPTSTR path_name_;
+ // Our path name.
+
+ LPTSTR addr_string_;
+ // The dynamically address string that's used for the
+ // <addr_to_string> method.
+
+ size_t addr_string_len_;
+ // Current length of the <addr_string_>
+};
+
+#endif /* ACE_URL_ADDR_H */