Click here to Skip to main content
15,896,063 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 - 2007. All rights reserved.
// Consult your license for conditions of use.
// Developed by Jarl Lindrud.
// Contact: jlindrud@hotmail.com .
//******************************************************************************

#ifndef INCLUDE_RCF_STUBFACTORY_HPP
#define INCLUDE_RCF_STUBFACTORY_HPP

#include <boost/shared_ptr.hpp>

#include <RCF/RcfClient.hpp>
#include <RCF/Tools.hpp>

namespace RCF {

    class I_RcfClient;
    typedef boost::shared_ptr<I_RcfClient> RcfClientPtr;

    class I_StubFactory
    {
    public:
        virtual ~I_StubFactory()
        {}

        virtual RcfClientPtr makeServerStub() = 0;
    };

    template<typename T, typename I1>
    class StubFactory_1 : public I_StubFactory
    {
    public:
        RcfClientPtr makeServerStub()
        {
            boost::shared_ptr<T> tPtr( new T );

            boost::shared_ptr< RCF::I_Deref<T> > derefPtr(
                new RCF::DerefSharedPtr<T>(tPtr) );

            RcfClientPtr rcfClientPtr =
                createServerStub( (I1 *) NULL, (T *) NULL, derefPtr);

            return rcfClientPtr;
        }
    };

    template<typename T, typename I1, typename I2>
    class StubFactory_2 : public I_StubFactory
    {
    public:
        RcfClientPtr makeServerStub()
        {
            boost::shared_ptr<T> tPtr( new T );

            boost::shared_ptr< RCF::I_Deref<T> > derefPtr(
                new RCF::DerefSharedPtr<T>(tPtr) );

            RcfClientPtr rcfClientPtr =
                createServerStub( (I1 *) NULL, (T *) NULL, derefPtr);

            {
                RcfClientPtr mergeePtr = createServerStub(
                    (I2 *) 0,
                    (T *) 0,
                    derefPtr);

                rcfClientPtr->getServerStub().merge(mergeePtr);
            }

            return rcfClientPtr;
        }
    };

    template<typename T, typename I1, typename I2, typename I3>
    class StubFactory_3 : public I_StubFactory
    {
    public:
        RcfClientPtr makeServerStub()
        {
            boost::shared_ptr<T> tPtr( new T );

            boost::shared_ptr< RCF::I_Deref<T> > derefPtr(
                new RCF::DerefSharedPtr<T>(tPtr) );

            RcfClientPtr rcfClientPtr =
                createServerStub( (I1 *) NULL, (T *) NULL, derefPtr);

            {
                RcfClientPtr mergeePtr = createServerStub(
                    (I2 *) 0,
                    (T *) 0,
                    derefPtr);

                rcfClientPtr->getServerStub().merge(mergeePtr);
            }

            {
                RcfClientPtr mergeePtr = createServerStub(
                    (I3 *) 0,
                    (T *) 0,
                    derefPtr);

                rcfClientPtr->getServerStub().merge(mergeePtr);
            }

            return rcfClientPtr;
        }
    };

    template<typename T, typename I1, typename I2, typename I3, typename I4>
    class StubFactory_4 : public I_StubFactory
    {
    public:
        RcfClientPtr makeServerStub()
        {
            boost::shared_ptr<T> tPtr( new T );

            boost::shared_ptr< RCF::I_Deref<T> > derefPtr(
                new RCF::DerefSharedPtr<T>(tPtr) );

            RcfClientPtr rcfClientPtr =
                createServerStub( (I1 *) NULL, (T *) NULL, derefPtr);

            {
                RcfClientPtr mergeePtr = createServerStub(
                    (I2 *) 0,
                    (T *) 0,
                    derefPtr);

                rcfClientPtr->getServerStub().merge(mergeePtr);
            }

            {
                RcfClientPtr mergeePtr = createServerStub(
                    (I3 *) 0,
                    (T *) 0,
                    derefPtr);

                rcfClientPtr->getServerStub().merge(mergeePtr);
            }

            {
                RcfClientPtr mergeePtr = createServerStub(
                    (I4 *) 0,
                    (T *) 0,
                    derefPtr);

                rcfClientPtr->getServerStub().merge(mergeePtr);
            }

            return rcfClientPtr;
        }
    };

} // namespace RCF

#endif // ! INCLUDE_RCF_STUBFACTORY_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