Click here to Skip to main content
15,892,674 members
Articles / Programming Languages / C++

RMI for C++

Rate me:
Please Sign up or sign in to vote.
4.87/5 (113 votes)
6 Aug 2009CPOL8 min read 832.1K   4.6K   153  
User-friendly remote method invocation in C++.
//*****************************************************************************
// RCF - Remote Call Framework
// Copyright (c) 2005, Jarl Lindrud.
// Contact: jlindrud@hotmail.com .
//
// Distributed under the so-called MIT license, see accompanying file license.txt.
//*****************************************************************************

#ifndef _SF_SERIALIZEPOLYMORPHIC_HPP_
#define _SF_SERIALIZEPOLYMORPHIC_HPP_

namespace SF {

    class Archive;

    class I_SerializerPolymorphic
    {
    public:
        virtual ~I_SerializerPolymorphic() {}
        virtual bool invoke(void **ppvb, Archive &ar) = 0;
    };

    template<typename Base, typename Derived>
    void registerBaseAndDerived();

    template<typename Base, typename Derived>
    class SerializerPolymorphic : public I_SerializerPolymorphic
    {
    public:
        static SerializerPolymorphic &instantiate() { return instance; }
        SerializerPolymorphic() {}
        bool invoke(void **ppvb, Archive &ar);

    private:
        static SerializerPolymorphic instance;
        SerializerPolymorphic(int) 
        { 
            SF::registerBaseAndDerived<Base, Derived>(); 
        }
    };

    template<class Base, class Derived>
    SerializerPolymorphic<Base, Derived> SerializerPolymorphic<Base, Derived>::instance(0);

}

#include <SF/Archive.hpp>

//SF::Archive ar(SF::Archive::WRITE, NULL);

namespace SF {

    template<typename Base, typename Derived>
    bool SerializerPolymorphic<Base,Derived>::invoke(void **ppvb, Archive &ar)
    {
        if (ar.isWrite()) 
        {
            Base *pb = reinterpret_cast<Base *>(*ppvb);
            Derived *pd = dynamic_cast<Derived *>(pb);
            ar & pd;
        }
        else if (ar.isRead()) 
        {
            if (ar.isFlagSet(Archive::POINTER)) 
            {
                Derived *pd = NULL;
                ar & pd;
                Base *pb = static_cast<Base *>(pd);
                *ppvb = pb;
            }
            else 
            {
                Base *pb = reinterpret_cast<Base *>(*ppvb);
                Derived *pd = dynamic_cast<Derived *>(pb);
                ar & *pd;
            }
        }
        return ar.isOk();
    }

}

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