summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS2/HTTPU/http_status.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/JAWS2/HTTPU/http_status.h')
-rw-r--r--ACE/apps/JAWS2/HTTPU/http_status.h110
1 files changed, 110 insertions, 0 deletions
diff --git a/ACE/apps/JAWS2/HTTPU/http_status.h b/ACE/apps/JAWS2/HTTPU/http_status.h
new file mode 100644
index 00000000000..4f9efdc9fb4
--- /dev/null
+++ b/ACE/apps/JAWS2/HTTPU/http_status.h
@@ -0,0 +1,110 @@
+// $Id$
+
+#ifndef HTTPU_HTTP_STATUS_HPP
+#define HTTPU_HTTP_STATUS_HPP
+
+#include "ace/Singleton.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "HTTPU/http_export.h"
+#include "ace/Synch_Traits.h"
+
+class HTTP_SCode_Base;
+
+class HTTPU_Export HTTP_SCode_Node
+// Constructor should be passed a string literal.
+{
+ friend class HTTP_SCode_Base;
+
+public:
+ operator int (void) const;
+ operator const char * (void) const;
+
+private:
+ HTTP_SCode_Node (int code, const char *code_str);
+
+private:
+ int code_;
+ const char *code_str_;
+};
+
+class HTTPU_Export HTTP_SCode_Base
+{
+public:
+ static HTTP_SCode_Node STATUS_OK;
+ static HTTP_SCode_Node STATUS_CREATED;
+ static HTTP_SCode_Node STATUS_ACCEPTED;
+ static HTTP_SCode_Node STATUS_NO_CONTENT;
+ static HTTP_SCode_Node STATUS_MULTIPLE_CHOICES;
+ static HTTP_SCode_Node STATUS_MOVED_PERMANENTLY;
+ static HTTP_SCode_Node STATUS_MOVED_TEMPORARILY;
+ static HTTP_SCode_Node STATUS_NOT_MODIFIED;
+ static HTTP_SCode_Node STATUS_INSUFFICIENT_DATA;
+ static HTTP_SCode_Node STATUS_BAD_REQUEST;
+ static HTTP_SCode_Node STATUS_UNAUTHORIZED;
+ static HTTP_SCode_Node STATUS_FORBIDDEN;
+ static HTTP_SCode_Node STATUS_NOT_FOUND;
+ static HTTP_SCode_Node STATUS_INTERNAL_SERVER_ERROR;
+ static HTTP_SCode_Node STATUS_NOT_IMPLEMENTED;
+ static HTTP_SCode_Node STATUS_BAD_GATEWAY;
+ static HTTP_SCode_Node STATUS_SERVICE_UNAVAILABLE;
+ static HTTP_SCode_Node STATUS_QUIT;
+
+ enum
+ {
+ MIN_STATUS_CODE = 200,
+ MAX_STATUS_CODE = 599
+ };
+
+private:
+ static HTTP_SCode_Node DUMMY;
+};
+
+class HTTPU_Export HTTP_SCode : public HTTP_SCode_Base
+{
+ // = TITLE
+ // Go from numeric status codes to descriptive strings.
+ //
+ friend class HTTP_SCode_Node;
+ friend class ACE_Singleton<HTTP_SCode, ACE_SYNCH_MUTEX>;
+
+protected:
+
+ HTTP_SCode (void);
+ ~HTTP_SCode (void);
+
+public:
+
+ const char * operator[] (int) const;
+ // Return the reason string corresponding to a status code number.
+
+ static HTTP_SCode *instance (void);
+ // Return reference to the singleton.
+
+ enum
+ {
+ SC_TABLE_SIZE = MAX_STATUS_CODE - MIN_STATUS_CODE + 1
+ };
+
+ void dump (void);
+
+private:
+ static const char *table_[SC_TABLE_SIZE];
+};
+
+
+typedef ACE_Singleton<HTTP_SCode, ACE_SYNCH_MUTEX>
+ HTTP_SCode_Singleton;
+
+#if defined (ACE_HAS_INLINED_OSCALLS)
+# if defined (ACE_INLINE)
+# undef ACE_INLINE
+# endif /* ACE_INLINE */
+# define ACE_INLINE inline
+# include "HTTPU/http_status.inl"
+# endif /* ACE_HAS_INLINED_OSCALLS */
+
+#endif /* HTTPU_HTTP_STATUS_HPP */