pica/server/server.cpp

66 lines
1.8 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
// SPDX-License-Identifier: GPL-3.0-or-later
2023-11-21 22:19:08 +00:00
#include "server.h"
2023-12-13 20:33:11 +00:00
#include "handler/info.h"
#include "handler/env.h"
2023-12-14 22:17:28 +00:00
#include "handler/register.h"
2023-12-13 20:33:11 +00:00
constexpr uint8_t currentDbVesion = 1;
2023-11-21 22:19:08 +00:00
Server::Server():
terminating(false),
requestCount(0),
2023-11-23 19:57:32 +00:00
serverName(std::nullopt),
2023-12-07 20:32:43 +00:00
router(),
db()
2023-11-23 19:57:32 +00:00
{
2023-12-07 20:32:43 +00:00
std::cout << "Startig pica..." << std::endl;
db = DBInterface::create(DBInterface::Type::mysql);
std::cout << "Database type: MySQL" << std::endl;
db->setCredentials("pica", "pica");
db->setDatabase("pica");
2023-12-11 23:29:55 +00:00
db->connect("/run/mysqld/mysqld.sock");
db->migrate(currentDbVesion);
2023-12-08 22:26:16 +00:00
2023-12-13 20:33:11 +00:00
router.addRoute(std::make_unique<Handler::Info>());
router.addRoute(std::make_unique<Handler::Env>());
2023-12-14 22:17:28 +00:00
router.addRoute(std::make_unique<Handler::Register>());
2023-11-23 19:57:32 +00:00
}
2023-11-21 22:19:08 +00:00
Server::~Server() {}
void Server::run(int socketDescriptor) {
while (!terminating) {
std::unique_ptr<Request> request = std::make_unique<Request>();
bool result = request->wait(socketDescriptor);
if (!result) {
std::cerr << "Error accepting a request" << std::endl;
return;
}
handleRequest(std::move(request));
}
}
void Server::handleRequest(std::unique_ptr<Request> request) {
++requestCount;
if (!serverName) {
try {
serverName = request->getServerName();
std::cout << "received server name " << serverName.value() << std::endl;
} catch (...) {
std::cerr << "failed to read server name" << std::endl;
2023-12-13 20:33:11 +00:00
Response error(*request.get(), Response::Status::internalError);
error.send();
2023-11-21 22:19:08 +00:00
return;
}
}
2023-12-13 20:33:11 +00:00
std::string path = request->getPath(serverName.value());
router.route(path.data(), std::move(request));
2023-11-23 19:57:32 +00:00
}