source: osgVisual/include/cluster/dataIO_clusterENet.h @ 88

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

Moved memory leak detection from source file to headerfile. Its still in the class but at least not in the source file.

The leak detection works, but the false positives are not stopped.
Use Linux/Valgrind? to make your final leak detection beyond the easy first approach in MSVC

File size: 2.3 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/notify>
19#include <osg/ArgumentParser>
20#include <osgDB/Registry>
21#include <osgDB/ReaderWriter>
22#include <iostream>
23#include <cstdlib>      // Clearscrean console
24
25#include <dataIO_cluster.h>
26#include <dataIO_clusterENet_implementation.h>
27
28namespace osgVisual
29{
30
31/**
32 * \brief This class is a ENet based cluster implementation class for osgVisuals cluster capabilities.
33 *
34 * All functions which are called always return true and send a debug string to stdout to announce that they were called.
35 *
36 * @author Torben Dannhauer
37 * @date  July 2010
38 */ 
39class dataIO_clusterENet :      public dataIO_cluster
40{
41        #include <leakDetection.h>
42public:
43        dataIO_clusterENet();
44        virtual ~dataIO_clusterENet(void);
45
46        void init( osg::ArgumentParser& arguments_, osgViewer::Viewer* viewer_, clustermode clusterMode_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ );
47        void shutdown();
48
49        void init();
50        bool sendTO_OBJvaluesToSlaves(osg::Matrixd viewMatrix_);
51        bool readTO_OBJvaluesFromMaster();
52        void reportAsReadyToSwap();
53        bool waitForSwap();
54        bool waitForAllReadyToSwap();
55        bool sendSwapCommand();
56
57private:
58        osg::ref_ptr<osgVisual::dataIO_clusterENet_implementation> enet_impl;
59        std::string serverToConnect;
60        osgVisual::dataIO_cluster::clustermode clusterMode;
61        std::string receivedTransportContainer;
62
63        osg::ref_ptr<osgDB::Options> readOptions;
64        osg::ref_ptr<osgDB::Options> writeOptions;
65        osg::ref_ptr<osgDB::ReaderWriter> rw;
66};
67
68} //END NAMESPACE
Note: See TracBrowser for help on using the repository browser.