open_toontown_panda3d/panda/src/net/connectionWriter.h

102 lines
2.7 KiB
C++

// Filename: connectionWriter.h
// Created by: drose (08Feb00)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
//
// All use of this software is subject to the terms of the Panda 3d
// Software license. You should have received a copy of this license
// along with this source code; you will also find a current copy of
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
//
// To contact the maintainers of this program write to
// panda3d-general@lists.sourceforge.net .
//
////////////////////////////////////////////////////////////////////
#ifndef CONNECTIONWRITER_H
#define CONNECTIONWRITER_H
#include "pandabase.h"
#include "datagramQueue.h"
#include "connection.h"
#include "pointerTo.h"
#include "thread.h"
#include "pvector.h"
class ConnectionManager;
class NetAddress;
////////////////////////////////////////////////////////////////////
// Class : ConnectionWriter
// Description : This class handles threaded delivery of datagrams to
// various TCP or UDP sockets.
//
// A ConnectionWriter may define an arbitrary number of
// threads (0 or more) to write its datagrams to
// sockets. The number of threads is specified at
// construction time and cannot be changed.
////////////////////////////////////////////////////////////////////
class EXPCL_PANDA_NET ConnectionWriter {
PUBLISHED:
ConnectionWriter(ConnectionManager *manager, int num_threads);
~ConnectionWriter();
bool send(const Datagram &datagram,
const PT(Connection) &connection);
bool send(const Datagram &datagram,
const PT(Connection) &connection,
const NetAddress &address);
bool is_valid_for_udp(const Datagram &datagram) const;
ConnectionManager *get_manager() const;
bool is_immediate() const;
int get_num_threads() const;
void set_raw_mode(bool mode);
bool get_raw_mode() const;
void set_tcp_header_size(int tcp_header_size);
int get_tcp_header_size() const;
protected:
void clear_manager();
private:
void thread_run(int thread_index);
bool send_datagram(const NetDatagram &datagram);
protected:
ConnectionManager *_manager;
private:
bool _raw_mode;
int _tcp_header_size;
DatagramQueue _queue;
class WriterThread : public Thread {
public:
WriterThread(ConnectionWriter *writer, int thread_index);
virtual void thread_main();
ConnectionWriter *_writer;
int _thread_index;
};
typedef pvector< PT(WriterThread) > Threads;
Threads _threads;
bool _immediate;
friend class ConnectionManager;
friend class WriterThread;
};
#endif