71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
// Filename: pStatClientControlMessage.h
|
|
// Created by: drose (09Jul00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001, 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://www.panda3d.org/license.txt .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d@yahoogroups.com .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef PSTATCLIENTCONTROLMESSAGE_H
|
|
#define PSTATCLIENTCONTROLMESSAGE_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "pStatCollectorDef.h"
|
|
|
|
#include "pvector.h"
|
|
|
|
class Datagram;
|
|
class PStatClientVersion;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : PStatClientControlMessage
|
|
// Description : This kind of message is sent from the client to the
|
|
// server on the TCP socket to establish critical
|
|
// control information.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA PStatClientControlMessage {
|
|
public:
|
|
PStatClientControlMessage();
|
|
|
|
void encode(Datagram &datagram) const;
|
|
bool decode(const Datagram &datagram, PStatClientVersion *version);
|
|
|
|
enum Type {
|
|
T_datagram = 0,
|
|
T_hello,
|
|
T_define_collectors,
|
|
T_define_threads,
|
|
T_invalid
|
|
};
|
|
|
|
Type _type;
|
|
|
|
// Used for T_hello
|
|
string _client_hostname;
|
|
string _client_progname;
|
|
int _major_version;
|
|
int _minor_version;
|
|
|
|
// Used for T_define_collectors
|
|
pvector<PStatCollectorDef *> _collectors;
|
|
|
|
// Used for T_define_threads
|
|
int _first_thread_index;
|
|
pvector<string> _names;
|
|
};
|
|
|
|
|
|
#endif
|
|
|