mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 22:42:42 +02:00
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
//
|
|
// AssignmentClient.h
|
|
// assignment-client/src
|
|
//
|
|
// Created by Stephen Birarda on 11/25/2013.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_AssignmentClient_h
|
|
#define hifi_AssignmentClient_h
|
|
|
|
#include <QtCore/QCoreApplication>
|
|
#include <QtCore/QPointer>
|
|
|
|
#include "ThreadedAssignment.h"
|
|
|
|
class QSharedMemory;
|
|
|
|
class AssignmentClient : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
|
|
AssignmentClient(Assignment::Type requestAssignmentType, QString assignmentPool,
|
|
QUuid walletUUID, QString assignmentServerHostname, quint16 assignmentServerPort,
|
|
quint16 assignmentMonitorPort);
|
|
private slots:
|
|
void sendAssignmentRequest();
|
|
void readPendingDatagrams();
|
|
void assignmentCompleted();
|
|
void handleAuthenticationRequest();
|
|
void sendStatsPacketToACM();
|
|
void stopAssignmentClient();
|
|
|
|
public slots:
|
|
void aboutToQuit();
|
|
|
|
private:
|
|
void setUpStatsToMonitor();
|
|
|
|
Assignment _requestAssignment;
|
|
QPointer<ThreadedAssignment> _currentAssignment;
|
|
QString _assignmentServerHostname;
|
|
HifiSockAddr _assignmentServerSocket;
|
|
QTimer _requestTimer; // timer for requesting and assignment
|
|
QTimer _statsTimerACM; // timer for sending stats to assignment client monitor
|
|
|
|
protected:
|
|
HifiSockAddr _assignmentClientMonitorSocket;
|
|
};
|
|
|
|
#endif // hifi_AssignmentClient_h
|