source: osgVisual/include/cluster/dataIO_cluster.h @ 69

Last change on this file since 69 was 69, checked in by Torben Dannhauer, 14 years ago

Network sync:
now works:

  • serialization of transport container
  • transport via ENet UDP
  • de-serialization of the transport container.
  • transport of viewmatrix and framenumber to the slave.

ToDo?: apply viewmatrix on slave still do not work.

File size: 4.2 KB
Line 
1#pragma once
2/* -*-c++-*- osgVisual - Copyright (C) 2009-2010 Torben Dannhauer
3 *
4 * This library is based on OpenSceneGraph, open source and may be redistributed and/or modified under
5 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
6 * (at your option) any later version.  The full license is in LICENSE file
7 * included with this distribution, and on the openscenegraph.org website.
8 *
9 * osgVisual requires for some proprietary modules a license from the correspondig manufacturer.
10 * You have to aquire licenses for all used proprietary modules.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * OpenSceneGraph Public License for more details.
16*/
17
18#include <osg/referenced>
19#include <osgViewer/Viewer>
20
21#include "dataIO_slot.h"
22
23#include "dataIO_transportContainer.h"
24
25
26namespace osgVisual
27{
28
29/**
30 * \brief This class is the interface definition class for valid cluster implementations.
31 *
32 * This class is an abstract class, thus cannot be instantiated. Derive this class for usage.
33 *
34 * @author Torben Dannhauer
35 * @date  Feb 2010
36 */ 
37class dataIO_cluster :  public osg::Referenced
38{
39public:
40        /**
41         * This enum defines the three modi of the cluster engine.
42         */ 
43        enum clustermode {MASTER, SLAVE, STANDALONE};
44
45        /**
46         * \brief Empty constructor.
47         *
48         */ 
49        dataIO_cluster() {}
50
51        /**
52         * \brief Empty destructor
53         *
54         * @return
55         */ 
56        virtual ~dataIO_cluster() {}
57
58        /**
59         * \brief Pure virtual function for initialization. Must be implemented in derived class.
60         *
61         */ 
62        virtual void init( osg::ArgumentParser& arguments_, osgViewer::Viewer* viewer_, clustermode clusterMode_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ ) = 0;
63
64        void enableHardSync(bool hardSync_){hardSync=hardSync_;};
65       
66        bool isHardSyncEnabled(){return hardSync;};
67
68        virtual void shutdown() = 0;
69
70        /**
71         * \brief This function sets the current transportContainer the cluster should send.
72         *
73         * The previous container is removed, if set. (smartpointer, will delete itself.). If the cluster is in slave mode, the send_container is ignored.
74         *
75         * @param sendContainer_ : New container to set.
76         */ 
77        void setSendTransportContainer( osgVisual::dataIO_transportContainer* sendContainer_ ) {sendContainer=sendContainer_;}
78
79        /**
80         * \brief Pure virtual function for sending TO_OBJ values via cluster to slave. Must be implemented in derived class.
81         *
82         * @return : See derived class.
83         */ 
84        virtual bool sendTO_OBJvaluesToSlaves() = 0;
85
86        /**
87         * \brief Pure virtual function for reading TO_OBJ values from master. Must be implemented in derived class.
88         *
89         * @return : See derived class.
90         */ 
91        virtual bool readTO_OBJvaluesFromMaster() = 0;
92
93        /**
94         * \brief Pure virtual function for reporting slave as ready to swap. Must be implemented in derived class.
95         *
96         */ 
97        virtual void reportAsReadyToSwap() = 0;
98
99        /**
100         * \brief Pure virtual function for waiting as slave for swap command. Must be implemented in derived class.
101         *
102         * @return : See derived class.
103         */ 
104        virtual bool waitForSwap() = 0;
105
106        /**
107         * \brief Pure virtual function for waiting as master for all slaves reported as ready to swap. Must be implemented in derived class.
108         *
109         * @return : See derived class.
110         */ 
111        virtual bool waitForAllReadyToSwap() = 0;
112
113        /**
114         * \brief Pure virtual function for sending swap command to all slaves. Must be implemented in derived class.
115         *
116         * @return : See derived class.
117         */ 
118        virtual bool sendSwapCommand() = 0;
119
120
121
122protected:
123        osgVisual::dataIO_cluster::clustermode clusterMode;     // This variable only mirrors the variable of dataIO. will be set during initialize.
124        bool initialized;
125        int port;
126        bool hardSync;
127
128        /**
129         * Referenced Pointer to the applications viewer.
130         */ 
131        osg::ref_ptr<osgViewer::Viewer> viewer;
132
133        osg::ref_ptr<osgVisual::dataIO_transportContainer> sendContainer;       // Points to the send container of dataIO.
134        std::string receivedTransportContainer;
135};
136
137}       // END NAMESPACE
Note: See TracBrowser for help on using the repository browser.