2020-04-05 21:16:16 +02:00
|
|
|
// ftpd is a server implementation based on the following:
|
|
|
|
// - RFC 959 (https://tools.ietf.org/html/rfc959)
|
|
|
|
// - RFC 3659 (https://tools.ietf.org/html/rfc3659)
|
|
|
|
// - suggested implementation details from https://cr.yp.to/ftp/filesystem.html
|
|
|
|
//
|
|
|
|
// Copyright (C) 2020 Michael Theall
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ftpSession.h"
|
|
|
|
#include "platform.h"
|
|
|
|
#include "socket.h"
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
#include <chrono>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class FtpServer;
|
|
|
|
using UniqueFtpServer = std::unique_ptr<FtpServer>;
|
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief FTP server
|
2020-04-05 21:16:16 +02:00
|
|
|
class FtpServer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~FtpServer ();
|
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Draw server and all of its sessions
|
2020-04-05 21:16:16 +02:00
|
|
|
void draw ();
|
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Create server
|
|
|
|
/// \param port_ Port to listen on
|
2020-04-05 21:16:16 +02:00
|
|
|
static UniqueFtpServer create (std::uint16_t port_);
|
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Update free space
|
2020-04-05 21:16:16 +02:00
|
|
|
static void updateFreeSpace ();
|
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Server start time
|
2020-04-05 21:16:16 +02:00
|
|
|
static std::time_t startTime ();
|
|
|
|
|
|
|
|
private:
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Paramterized constructor
|
|
|
|
/// \param port_ Port to listen on
|
2020-04-05 21:16:16 +02:00
|
|
|
FtpServer (std::uint16_t port_);
|
|
|
|
|
2020-04-08 23:53:47 +02:00
|
|
|
/// \brief Handle when network is found
|
|
|
|
void handleNetworkFound ();
|
2020-04-06 07:36:03 +02:00
|
|
|
|
2020-04-08 23:53:47 +02:00
|
|
|
/// \brief Handle when network is lost
|
|
|
|
void handleNetworkLost ();
|
2020-04-05 21:16:16 +02:00
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Server loop
|
2020-04-05 21:16:16 +02:00
|
|
|
void loop ();
|
2020-04-06 07:36:03 +02:00
|
|
|
|
|
|
|
/// \brief Thread entry point
|
2020-04-05 21:16:16 +02:00
|
|
|
void threadFunc ();
|
|
|
|
|
2020-04-17 22:32:39 +02:00
|
|
|
#ifndef NDS
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Thread
|
2020-04-05 21:16:16 +02:00
|
|
|
platform::Thread m_thread;
|
2020-04-06 07:36:03 +02:00
|
|
|
|
|
|
|
/// \brief Mutex
|
2020-04-05 21:16:16 +02:00
|
|
|
platform::Mutex m_lock;
|
2020-04-17 22:32:39 +02:00
|
|
|
#endif
|
2020-04-05 21:16:16 +02:00
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Listen socket
|
2020-04-05 21:16:16 +02:00
|
|
|
UniqueSocket m_socket;
|
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief ImGui window name
|
2020-04-05 21:16:16 +02:00
|
|
|
std::string m_name;
|
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Sessions
|
2020-04-05 21:16:16 +02:00
|
|
|
std::vector<UniqueFtpSession> m_sessions;
|
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Port to listen on
|
|
|
|
std::uint16_t const m_port;
|
2020-04-05 21:16:16 +02:00
|
|
|
|
2020-04-06 07:36:03 +02:00
|
|
|
/// \brief Whether thread should quit
|
2020-04-05 21:16:16 +02:00
|
|
|
std::atomic<bool> m_quit;
|
|
|
|
};
|