Click here to Skip to main content
15,894,460 members
Articles / Programming Languages / C++

RCF - Interprocess Communication for C++

Rate me:
Please Sign up or sign in to vote.
4.94/5 (147 votes)
25 Oct 2011CPOL20 min read 4.6M   8.4K   331  
A server/client IPC framework, using the C++ preprocessor as an IDL compiler.
//*****************************************************************************
// RCF - Remote Call Framework
// Copyright (c) 2005. All rights reserved.
// Developed by Jarl Lindrud.
// Contact: jlindrud@hotmail.com .
//*****************************************************************************

#ifndef INCLUDE_RCF_ZLIBCOMPRESSIONFILTER_HPP
#define INCLUDE_RCF_ZLIBCOMPRESSIONFILTER_HPP

#include <memory>
#include <vector>

#include <boost/noncopyable.hpp>

#include <RCF/AsyncFilter.hpp>

namespace RCF {

    static const int RCF_FILTER_ZLIB_COMPRESSION_STATELESS = 3;

    static const int RCF_FILTER_ZLIB_COMPRESSION_STATEFUL = 4;

    class ZlibCompressionFilter : public IdentityFilter, boost::noncopyable
    {
    public:
        ZlibCompressionFilter(int bufferSize, bool stateful);
        static const int DefaultBufferSize = 4096;

    private:
        void read(char *buffer, std::size_t bufferLen);
        void write(const char *buffer, std::size_t bufferLen);
        void onReadWriteCompleted(std::size_t bytesTransferred, int error);

        enum IoState
        {
            Ready,
            Reading,
            Writing
        };

        // input state
        IoState preState;

        friend class ZlibCompressionReadFilter;
        friend class ZlibCompressionWriteFilter;

        boost::shared_ptr<ZlibCompressionReadFilter> readFilter;
        boost::shared_ptr<ZlibCompressionWriteFilter> writeFilter;
    };

    /// Filter implementing a stateless compression protocol, through the Zlib library.
    class ZlibStatelessCompressionFilter : public ZlibCompressionFilter
    {
    public:
        /// Constructor.
        /// \param bufferSize Internal buffer size, limiting how much data can be compressed/decompressed in a single operation.
        ZlibStatelessCompressionFilter(int bufferSize = ZlibCompressionFilter::DefaultBufferSize) :
            ZlibCompressionFilter(bufferSize, false)
        {}

        static FilterDescription sGetFilterDescription();
        FilterDescription getFilterDescription() const;
    };

    /// Filter implementing a stateful compression protocol, through the Zlib library.
    class ZlibStatefulCompressionFilter : public ZlibCompressionFilter
    {
    public:
        /// Constructor.
        /// \param bufferSize Internal buffer size, limiting how much data can be compressed/decompressed in a single operation.
        ZlibStatefulCompressionFilter(int bufferSize = ZlibCompressionFilter::DefaultBufferSize) :
            ZlibCompressionFilter(bufferSize, true)
        {}

        static FilterDescription sGetFilterDescription();
        FilterDescription getFilterDescription() const;
    };

    
    /// Filter factory for ZlibStatelessCompressionFilter.
    class ZlibStatelessCompressionFilterFactory : public FilterFactory
    {
    public:
        /// Constructor.
        /// \param bufferSize Internal buffer size, limiting how much data can be compressed/decompressed in a single operation.
        ZlibStatelessCompressionFilterFactory(int bufferSize = ZlibCompressionFilter::DefaultBufferSize);
        FilterPtr createFilter();
        FilterDescription getFilterDescription();

    private:
        int bufferSize;
    };

    /// Filter factory for ZlibStatefulCompressionFilter.
    class ZlibStatefulCompressionFilterFactory : public FilterFactory
    {
    public:
        /// Constructor.
        /// \param bufferSize Internal buffer size, limiting how much data can be compressed/decompressed in a single operation.
        ZlibStatefulCompressionFilterFactory(int bufferSize = ZlibCompressionFilter::DefaultBufferSize);
        FilterPtr createFilter();
        FilterDescription getFilterDescription();

    private:
        int bufferSize;
    };

} // namespace RCF

#endif // ! INCLUDE_RCF_ZLIBCOMPRESSIONFILTER_HPP

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Australia Australia
Software developer, from Sweden and now living in Canberra, Australia, working on distributed C++ applications. When he is not programming, Jarl enjoys skiing and playing table tennis. He derives immense satisfaction from referring to himself in third person.

Comments and Discussions