summaryrefslogtreecommitdiff
path: root/ACE/protocols/ace/INet/SSLSock_IOStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/protocols/ace/INet/SSLSock_IOStream.h')
-rw-r--r--ACE/protocols/ace/INet/SSLSock_IOStream.h169
1 files changed, 169 insertions, 0 deletions
diff --git a/ACE/protocols/ace/INet/SSLSock_IOStream.h b/ACE/protocols/ace/INet/SSLSock_IOStream.h
new file mode 100644
index 00000000000..ad6df10810f
--- /dev/null
+++ b/ACE/protocols/ace/INet/SSLSock_IOStream.h
@@ -0,0 +1,169 @@
+// $Id$
+
+/**
+ * @file SSLSock_IOStream.h
+ *
+ * @author Martin Corino <mcorino@remedy.nl>
+ */
+
+#ifndef ACE_IOS_SSLSOCK_IOSTREAM_H
+#define ACE_IOS_SSLSOCK_IOSTREAM_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/SSL/SSL_SOCK_Stream.h"
+#include "ace/INet/BidirStreamBuffer.h"
+#include "ace/INet/StreamHandler.h"
+#include "ace/INet/StreamInterceptor.h"
+#include <istream>
+#include <ostream>
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace ACE
+ {
+ namespace IOS
+ {
+ /**
+ * @class ACE_IOS_SSLSock_StreamBuffer
+ *
+ * @brief
+ *
+ */
+ template <ACE_SYNCH_DECL>
+ class SSLSock_StreamBufferBase
+ : public BidirStreamBuffer<StreamHandler<ACE_SSL_SOCK_Stream, ACE_SYNCH_USE> >
+ {
+ public:
+ typedef StreamHandler<ACE_SSL_SOCK_Stream, ACE_SYNCH_USE> stream_type;
+
+ SSLSock_StreamBufferBase (stream_type* stream);
+ virtual ~SSLSock_StreamBufferBase ();
+
+ private:
+ enum
+ {
+ BUFFER_SIZE = 1024
+ };
+ };
+
+ /**
+ * @class ACE_IOS_SSLSock_IOS
+ *
+ * @brief
+ *
+ */
+ template <ACE_SYNCH_DECL>
+ class SSLSock_IOSBase
+ : public virtual std::ios
+ {
+ public:
+ typedef SSLSock_StreamBufferBase<ACE_SYNCH_USE> buffer_type;
+ typedef typename buffer_type::stream_type stream_type;
+
+ SSLSock_IOSBase (stream_type* stream);
+ ~SSLSock_IOSBase ();
+
+ buffer_type* rdbuf ();
+
+ void close ();
+
+ const stream_type& stream () const;
+
+ protected:
+ buffer_type streambuf_;
+ };
+
+ /**
+ * @class ACE_IOS_SSLSock_OStream
+ *
+ * @brief
+ *
+ */
+ template <ACE_SYNCH_DECL>
+ class SSLSock_OStreamBase
+ : public SSLSock_IOSBase<ACE_SYNCH_USE>, public std::ostream
+ {
+ public:
+ typedef SSLSock_IOSBase<ACE_SYNCH_USE> ios_base;
+ typedef typename ios_base::stream_type stream_type;
+ typedef SSLSock_StreamBufferBase<ACE_SYNCH_USE> buffer_type;
+
+ explicit SSLSock_OStreamBase(stream_type* stream);
+
+ ~SSLSock_OStreamBase();
+
+ void set_interceptor (typename buffer_type::interceptor_type& interceptor);
+ };
+
+ /**
+ * @class ACE_IOS_SSLSock_IStream
+ *
+ * @brief
+ *
+ */
+ template <ACE_SYNCH_DECL>
+ class SSLSock_IStreamBase
+ : public SSLSock_IOSBase<ACE_SYNCH_USE>, public std::istream
+ {
+ public:
+ typedef SSLSock_IOSBase<ACE_SYNCH_USE> ios_base;
+ typedef typename ios_base::stream_type stream_type;
+ typedef SSLSock_StreamBufferBase<ACE_SYNCH_USE> buffer_type;
+
+ explicit SSLSock_IStreamBase(stream_type* stream);
+
+ ~SSLSock_IStreamBase();
+
+ void set_interceptor (typename buffer_type::interceptor_type& interceptor);
+ };
+
+ /**
+ * @class ACE_IOS_SSLSock_IOStream
+ *
+ * @brief
+ *
+ */
+ template <ACE_SYNCH_DECL>
+ class SSLSock_IOStreamBase
+ : public SSLSock_IOSBase<ACE_SYNCH_USE>, public std::iostream
+ {
+ public:
+ typedef SSLSock_IOSBase<ACE_SYNCH_USE> ios_base;
+ typedef typename ios_base::stream_type stream_type;
+ typedef SSLSock_StreamBufferBase<ACE_SYNCH_USE> buffer_type;
+
+ explicit SSLSock_IOStreamBase(stream_type* stream);
+
+ ~SSLSock_IOStreamBase();
+
+ void set_interceptor (typename buffer_type::interceptor_type& interceptor);
+ };
+
+ typedef SSLSock_StreamBufferBase<ACE_NULL_SYNCH> SSLSock_StreamBuffer;
+ typedef SSLSock_IOSBase<ACE_NULL_SYNCH> SSLSock_IOS;
+ typedef SSLSock_IStreamBase<ACE_NULL_SYNCH> SSLSock_IStream;
+ typedef SSLSock_OStreamBase<ACE_NULL_SYNCH> SSLSock_OStream;
+ typedef SSLSock_IOStreamBase<ACE_NULL_SYNCH> SSLSock_IOStream;
+
+ }
+ }
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
+#include "ace/INet/SSLSock_IOStream.cpp"
+#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
+
+#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
+#pragma implementation ("SSLSock_IOStream.cpp")
+#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
+
+#include /**/ "ace/post.h"
+#endif /* ACE_IOS_SSLSOCK_IOSTREAM_H */