summaryrefslogtreecommitdiff
path: root/ACE/protocols/ace/INet/HTTP_URL.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/protocols/ace/INet/HTTP_URL.h')
-rw-r--r--ACE/protocols/ace/INet/HTTP_URL.h116
1 files changed, 116 insertions, 0 deletions
diff --git a/ACE/protocols/ace/INet/HTTP_URL.h b/ACE/protocols/ace/INet/HTTP_URL.h
new file mode 100644
index 00000000000..7217ab6851d
--- /dev/null
+++ b/ACE/protocols/ace/INet/HTTP_URL.h
@@ -0,0 +1,116 @@
+// $Id$
+
+/**
+ * @file HTTP_URL.h
+ *
+ * @author Martin Corino <mcorino@remedy.nl>
+ */
+
+#ifndef ACE_HTTP_URL_H
+#define ACE_HTTP_URL_H
+
+#include /**/ "ace/pre.h"
+
+#include /**/ "ace/config-all.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "ace/INet/INet_Export.h"
+#include "ace/INet/URLBase.h"
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace ACE
+ {
+ namespace HTTP
+ {
+ /**
+ * @class ACE_HTTP_URL
+ *
+ * @brief Implements HTTP url support.
+ *
+ */
+ class ACE_INET_Export URL
+ : public ACE::INet::URL_INetAuthBase
+ {
+ public:
+ URL ();
+ URL (const ACE_CString& url_string);
+ URL (const URL& url);
+ virtual ~URL ();
+
+ URL& operator =(const URL& url);
+
+ virtual const ACE_CString& get_scheme () const;
+
+ virtual const ACE_CString& get_query () const;
+
+ virtual const ACE_CString& get_fragment () const;
+
+ virtual ACE_CString get_request_uri () const;
+
+ virtual void set_query (const ACE_CString& query);
+
+ virtual void set_fragment (const ACE_CString& fargment);
+
+ void set_proxy (const ACE_CString& proxy_host, u_short proxy_port = HTTP_PROXY_PORT);
+
+ const ACE_CString& get_proxy_host () const;
+
+ u_short get_proxy_port () const;
+
+ bool has_proxy () const;
+
+ virtual ACE_CString to_string () const;
+
+ virtual u_short default_port () const;
+
+ static const char* PROTOCOL;
+
+ static const ACE_CString& protocol ();
+
+ enum
+ {
+ HTTP_PORT = 80,
+ HTTP_PROXY_PORT = 8080
+ };
+
+ protected:
+ URL (u_short port);
+
+ virtual ACE::INet::ClientRequestHandler* create_default_request_handler () const;
+
+ private:
+ ACE_CString query_;
+ ACE_CString fragment_;
+ ACE_CString proxy_host_;
+ u_short proxy_port_;
+
+ private:
+ class Factory
+ : public ACE::INet::URL_Base::Factory
+ {
+ public:
+ Factory ();
+ virtual ~Factory ();
+ virtual const ACE_CString& protocol ();
+ virtual ACE::INet::URL_Base* create_from_string (const ACE_CString& url_string);
+ };
+
+ typedef ACE_Singleton<Factory,
+ ACE_Null_Mutex> TURLFactorySingleton;
+ static const Factory& factory_;
+ };
+ }
+ }
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+#if defined (__ACE_INLINE__)
+#include "ace/INet/HTTP_URL.inl"
+#endif
+
+#include /**/ "ace/post.h"
+#endif /* ACE_HTTP_URL_H */