aboutsummaryrefslogtreecommitdiff
path: root/nxcomp/GenericChannel.h
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2011-11-19 15:59:16 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2011-11-19 15:59:16 +0100
commita48361b11a5abb5a345dac5ec83a8f56c4d50b74 (patch)
treea16fb870a072450bb45ee09ac4df9887bfa7f98e /nxcomp/GenericChannel.h
parent9997e13bb583de4012914006c7507839a4e11227 (diff)
parent232dfc41d41390bfffa75ec2ed065c109fa03a0e (diff)
downloadnx-libs-a48361b11a5abb5a345dac5ec83a8f56c4d50b74.tar.gz
nx-libs-a48361b11a5abb5a345dac5ec83a8f56c4d50b74.tar.bz2
nx-libs-a48361b11a5abb5a345dac5ec83a8f56c4d50b74.zip
Merge branch 'nxcomp'
Diffstat (limited to 'nxcomp/GenericChannel.h')
-rw-r--r--nxcomp/GenericChannel.h448
1 files changed, 448 insertions, 0 deletions
diff --git a/nxcomp/GenericChannel.h b/nxcomp/GenericChannel.h
new file mode 100644
index 000000000..ba4f1e7e8
--- /dev/null
+++ b/nxcomp/GenericChannel.h
@@ -0,0 +1,448 @@
+/**************************************************************************/
+/* */
+/* Copyright (c) 2001, 2010 NoMachine, http://www.nomachine.com/. */
+/* */
+/* NXCOMP, NX protocol compression and NX extensions to this software */
+/* are copyright of NoMachine. Redistribution and use of the present */
+/* software is allowed according to terms specified in the file LICENSE */
+/* which comes in the source distribution. */
+/* */
+/* Check http://www.nomachine.com/licensing.html for applicability. */
+/* */
+/* NX and NoMachine are trademarks of Medialogic S.p.A. */
+/* */
+/* All rights reserved. */
+/* */
+/**************************************************************************/
+
+#ifndef GenericChannel_H
+#define GenericChannel_H
+
+#include "Channel.h"
+
+#include "Statistics.h"
+
+#include "GenericReadBuffer.h"
+
+//
+// Set the verbosity level.
+//
+
+#define PANIC
+#undef TEST
+#undef DEBUG
+
+//
+// Define this to log a line when a channel
+// is created or destroyed.
+//
+
+#undef REFERENCES
+
+//
+// This class implements the client
+// side compression of X protocol.
+//
+
+class GenericChannel : public Channel
+{
+ public:
+
+ GenericChannel(Transport *transport, StaticCompressor *compressor);
+
+ virtual ~GenericChannel();
+
+ virtual int handleRead(EncodeBuffer &encodeBuffer, const unsigned char *message,
+ unsigned int length);
+
+ virtual int handleWrite(const unsigned char *message, unsigned int length);
+
+
+ virtual int handleSplit(EncodeBuffer &encodeBuffer, MessageStore *store,
+ T_store_action action, int position, const unsigned char opcode,
+ const unsigned char *buffer, const unsigned int size)
+ {
+ return 0;
+ }
+
+ virtual int handleSplit(DecodeBuffer &decodeBuffer, MessageStore *store,
+ T_store_action action, int position, unsigned char &opcode,
+ unsigned char *&buffer, unsigned int &size)
+ {
+ return 0;
+ }
+
+
+ virtual int handleSplit(EncodeBuffer &encodeBuffer)
+ {
+ return 0;
+ }
+
+ virtual int handleSplit(DecodeBuffer &decodeBuffer)
+ {
+ return 0;
+ }
+
+ virtual int handleSplitEvent(EncodeBuffer &encodeBuffer, Split *split)
+ {
+ return 0;
+ }
+
+ virtual int handleSplitEvent(DecodeBuffer &decodeBuffer)
+ {
+ return 0;
+ }
+
+ virtual int handleMotion(EncodeBuffer &encodeBuffer)
+ {
+ return 0;
+ }
+
+ virtual int handleCompletion(EncodeBuffer &encodeBuffer);
+
+ virtual int handleConfiguration();
+
+ virtual int handleFinish();
+
+ virtual int handleAsyncEvents()
+ {
+ return 0;
+ }
+
+ virtual int needSplit() const
+ {
+ return 0;
+ }
+
+ virtual int needMotion() const
+ {
+ return 0;
+ }
+
+ virtual T_channel_type getType() const = 0;
+
+ //
+ // Initialize the static members.
+ //
+
+ static int setReferences();
+
+ protected:
+
+ //
+ // Generic channels are considered to be
+ // in congestion state as soon as the
+ // socket is blocked for write.
+ //
+
+ virtual int isCongested()
+ {
+ return (transport_ -> blocked() == 1);
+ }
+
+ virtual int isReliable()
+ {
+ return 0;
+ }
+
+ //
+ // Model generic channels' encoding and
+ // decoding policy.
+ //
+
+ virtual int isCompressed() = 0;
+
+ //
+ // Return true if the channel contains
+ // time sensitive data.
+ //
+
+ virtual int isPrioritized() = 0;
+
+ //
+ // Record the protocol bits for the
+ // specific service.
+ //
+
+ virtual void addProtocolBits(unsigned int bitsIn, unsigned int bitsOut) = 0;
+
+ //
+ // Channel's own read buffer.
+ //
+
+ GenericReadBuffer readBuffer_;
+
+ private:
+
+ //
+ // Keep track of object's creation
+ // and deletion.
+ //
+
+ #ifdef REFERENCES
+
+ static int references_;
+
+ #endif
+};
+
+class CupsChannel : public GenericChannel
+{
+ public:
+
+ CupsChannel(Transport *transport, StaticCompressor *compressor)
+
+ : GenericChannel(transport, compressor)
+ {
+ }
+
+ virtual ~CupsChannel()
+ {
+ }
+
+ protected:
+
+ virtual T_channel_type getType() const
+ {
+ return channel_cups;
+ }
+
+ virtual int isCompressed()
+ {
+ if (control -> isProtoStep8() == 0)
+ {
+ return 1;
+ }
+
+ return 0;
+ }
+
+ virtual int isPrioritized()
+ {
+ return 0;
+ }
+
+ virtual void addProtocolBits(unsigned int bitsIn,
+ unsigned int bitsOut)
+ {
+ statistics -> addCupsBits(bitsIn, bitsOut);
+ }
+};
+
+class SmbChannel : public GenericChannel
+{
+ public:
+
+ SmbChannel(Transport *transport, StaticCompressor *compressor)
+
+ : GenericChannel(transport, compressor)
+ {
+ }
+
+ virtual ~SmbChannel()
+ {
+ }
+
+ protected:
+
+ virtual T_channel_type getType() const
+ {
+ return channel_smb;
+ }
+
+ virtual int isCompressed()
+ {
+ if (control -> isProtoStep8() == 0)
+ {
+ return 1;
+ }
+
+ return 0;
+ }
+
+ virtual int isPrioritized()
+ {
+ return 0;
+ }
+
+ virtual void addProtocolBits(unsigned int bitsIn,
+ unsigned int bitsOut)
+ {
+ statistics -> addSmbBits(bitsIn, bitsOut);
+ }
+};
+
+class MediaChannel : public GenericChannel
+{
+ public:
+
+ MediaChannel(Transport *transport, StaticCompressor *compressor)
+
+ : GenericChannel(transport, compressor)
+ {
+ }
+
+ virtual ~MediaChannel()
+ {
+ }
+
+ protected:
+
+ virtual T_channel_type getType() const
+ {
+ return channel_media;
+ }
+
+ //
+ // Don't try to compress the media data.
+ //
+
+ virtual int isCompressed()
+ {
+ return 0;
+ }
+
+ //
+ // Reduce the latency of media channels
+ // by setting them as prioritized, even
+ // if this will take away bandwidth from
+ // the X channels.
+ //
+
+ virtual int isPrioritized()
+ {
+ return 1;
+ }
+
+ virtual void addProtocolBits(unsigned int bitsIn,
+ unsigned int bitsOut)
+ {
+ statistics -> addMediaBits(bitsIn, bitsOut);
+ }
+};
+
+class HttpChannel : public GenericChannel
+{
+ public:
+
+ HttpChannel(Transport *transport, StaticCompressor *compressor)
+
+ : GenericChannel(transport, compressor)
+ {
+ }
+
+ virtual ~HttpChannel()
+ {
+ }
+
+ protected:
+
+ virtual T_channel_type getType() const
+ {
+ return channel_http;
+ }
+
+ virtual int isCompressed()
+ {
+ if (control -> isProtoStep8() == 0)
+ {
+ return 1;
+ }
+
+ return 0;
+ }
+
+ virtual int isPrioritized()
+ {
+ return 0;
+ }
+
+ virtual void addProtocolBits(unsigned int bitsIn,
+ unsigned int bitsOut)
+ {
+ statistics -> addHttpBits(bitsIn, bitsOut);
+ }
+};
+
+class FontChannel : public GenericChannel
+{
+ public:
+
+ FontChannel(Transport *transport, StaticCompressor *compressor)
+
+ : GenericChannel(transport, compressor)
+ {
+ }
+
+ virtual ~FontChannel()
+ {
+ }
+
+ protected:
+
+ virtual T_channel_type getType() const
+ {
+ return channel_font;
+ }
+
+ virtual int isCompressed()
+ {
+ if (control -> isProtoStep8() == 0)
+ {
+ return 1;
+ }
+
+ return 0;
+ }
+
+ virtual int isPrioritized()
+ {
+ return 1;
+ }
+
+ virtual void addProtocolBits(unsigned int bitsIn,
+ unsigned int bitsOut)
+ {
+ statistics -> addFontBits(bitsIn, bitsOut);
+ }
+};
+
+class SlaveChannel : public GenericChannel
+{
+ public:
+
+ SlaveChannel(Transport *transport, StaticCompressor *compressor)
+
+ : GenericChannel(transport, compressor)
+ {
+ }
+
+ virtual ~SlaveChannel()
+ {
+ }
+
+ protected:
+
+ virtual T_channel_type getType() const
+ {
+ return channel_slave;
+ }
+
+ virtual int isCompressed()
+ {
+ return 0;
+ }
+
+ virtual int isPrioritized()
+ {
+ return 0;
+ }
+
+ virtual void addProtocolBits(unsigned int bitsIn,
+ unsigned int bitsOut)
+ {
+ statistics -> addSlaveBits(bitsIn, bitsOut);
+ }
+};
+
+#endif /* GenericChannel_H */