mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 14:43:12 +02:00
71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
//
|
|
// DomainServer.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 9/26/13.
|
|
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __hifi__DomainServer__
|
|
#define __hifi__DomainServer__
|
|
|
|
#include <deque>
|
|
|
|
#include <QtCore/QCoreApplication>
|
|
#include <QtCore/QFile>
|
|
#include <QtCore/QMutex>
|
|
|
|
#include <Assignment.h>
|
|
#include <NodeList.h>
|
|
|
|
#include "civetweb.h"
|
|
|
|
const int MAX_STATIC_ASSIGNMENT_FILE_ASSIGNMENTS = 1000;
|
|
|
|
class DomainServer : public NodeListHook {
|
|
public:
|
|
DomainServer(int argc, char* argv[]);
|
|
|
|
int run();
|
|
|
|
static void signalHandler(int signal);
|
|
static void setDomainServerInstance(DomainServer* domainServer);
|
|
|
|
/// Called by NodeList to inform us that a node has been added.
|
|
void nodeAdded(Node* node);
|
|
/// Called by NodeList to inform us that a node has been killed.
|
|
void nodeKilled(Node* node);
|
|
private:
|
|
static int civetwebRequestHandler(struct mg_connection *connection);
|
|
static void civetwebUploadHandler(struct mg_connection *connection, const char *path);
|
|
|
|
static DomainServer* domainServerInstance;
|
|
|
|
void prepopulateStaticAssignmentFile();
|
|
Assignment* matchingStaticAssignmentForCheckIn(const QUuid& checkInUUID, NODE_TYPE nodeType);
|
|
Assignment* deployableAssignmentForRequest(Assignment& requestAssignment);
|
|
void removeAssignmentFromQueue(Assignment* removableAssignment);
|
|
bool checkInWithUUIDMatchesExistingNode(const HifiSockAddr& nodePublicSocket,
|
|
const HifiSockAddr& nodeLocalSocket,
|
|
const QUuid& checkInUUI);
|
|
void possiblyAddStaticAssignmentsBackToQueueAfterRestart(timeval* startTime);
|
|
void addReleasedAssignmentBackToQueue(Assignment* releasedAssignment);
|
|
|
|
void cleanup();
|
|
|
|
unsigned char* addNodeToBroadcastPacket(unsigned char* currentPosition, Node* nodeToAdd);
|
|
|
|
QMutex _assignmentQueueMutex;
|
|
std::deque<Assignment*> _assignmentQueue;
|
|
|
|
QFile _staticAssignmentFile;
|
|
uchar* _staticAssignmentFileData;
|
|
|
|
Assignment* _staticAssignments;
|
|
|
|
const char* _voxelServerConfig;
|
|
|
|
bool _hasCompletedRestartHold;
|
|
};
|
|
|
|
#endif /* defined(__hifi__DomainServer__) */
|