mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-10-17 09:10:21 +01:00
Some checks failed
Build Debian packages / bookworm (push) Has been cancelled
Build Debian packages / bullseye (push) Has been cancelled
Build Debian packages / trixie (push) Has been cancelled
Build on FreeBSD / with UPnP (push) Has been cancelled
Build on OSX / With USE_UPNP=no (push) Has been cancelled
Build on OSX / With USE_UPNP=yes (push) Has been cancelled
Build on Windows / clang-x86_64 (push) Has been cancelled
Build on Windows / i686 (push) Has been cancelled
Build on Windows / ucrt-x86_64 (push) Has been cancelled
Build on Windows / x86_64 (push) Has been cancelled
Build on Windows / CMake clang-x86_64 (push) Has been cancelled
Build on Windows / CMake i686 (push) Has been cancelled
Build on Windows / CMake ucrt-x86_64 (push) Has been cancelled
Build on Windows / CMake x86_64 (push) Has been cancelled
Build on Windows / XP (push) Has been cancelled
Build on Ubuntu / Make with USE_UPNP=no (push) Has been cancelled
Build on Ubuntu / Make with USE_UPNP=yes (push) Has been cancelled
Build on Ubuntu / CMake with -DWITH_UPNP=OFF (push) Has been cancelled
Build on Ubuntu / CMake with -DWITH_UPNP=ON (push) Has been cancelled
Build containers / Building container for linux/amd64 (push) Has been cancelled
Build containers / Building container for linux/arm64 (push) Has been cancelled
Build containers / Building container for linux/arm/v7 (push) Has been cancelled
Build containers / Building container for linux/386 (push) Has been cancelled
Build containers / Pushing merged manifest (push) Has been cancelled
198 lines
4.9 KiB
C++
198 lines
4.9 KiB
C++
/*
|
|
* Copyright (c) 2025, The PurpleI2P Project
|
|
*
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
*
|
|
* See full license text in LICENSE file at top of project tree
|
|
*/
|
|
|
|
#if defined(__HAIKU__)
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <MenuItem.h>
|
|
#include <MenuBar.h>
|
|
#include <StringView.h>
|
|
#include <Font.h>
|
|
#include <MessageRunner.h>
|
|
#include <Window.h>
|
|
#include <Application.h>
|
|
#include <Alert.h>
|
|
|
|
#include "version.h"
|
|
#include "Log.h"
|
|
#include "Config.h"
|
|
#include "RouterContext.h"
|
|
#include "Tunnel.h"
|
|
#include "Transports.h"
|
|
#include "Daemon.h"
|
|
#include "ClientContext.h"
|
|
|
|
enum
|
|
{
|
|
M_GRACEFUL_SHUTDOWN = 1,
|
|
M_RUN_PEER_TEST,
|
|
M_DUMMY_COMMAND,
|
|
C_GRACEFUL_SHUTDOWN_UPDATE,
|
|
C_MAIN_VIEW_UPDATE
|
|
};
|
|
constexpr bigtime_t GRACEFUL_SHUTDOWN_UPDATE_INTERVAL = 1000*1100; // in microseconds, ~ 1 sec
|
|
constexpr int GRACEFUL_SHUTDOWN_UPDATE_COUNT = 600; // 10 minutes
|
|
constexpr bigtime_t MAIN_VIEW_UPDATE_INTERVAL = 5000*1000; // in miscroseconds, 5 secs
|
|
|
|
class MainWindow: public BWindow
|
|
{
|
|
public:
|
|
MainWindow ();
|
|
|
|
private:
|
|
void MessageReceived (BMessage * msg) override;
|
|
|
|
void UpdateMainView ();
|
|
|
|
private:
|
|
BMessenger m_Messenger;
|
|
BStringView * m_MainView;
|
|
std::unique_ptr<BMessageRunner> m_MainViewUpdateTimer, m_GracefulShutdownTimer;
|
|
};
|
|
|
|
class I2PApp: public BApplication
|
|
{
|
|
public:
|
|
|
|
I2PApp ();
|
|
void CreateMainWindow ();
|
|
};
|
|
|
|
MainWindow::MainWindow ():
|
|
BWindow (BRect(100, 100, 500, 400), "i2pd " VERSION, B_TITLED_WINDOW, B_QUIT_ON_WINDOW_CLOSE),
|
|
m_Messenger (nullptr, this)
|
|
{
|
|
auto r = Bounds (); r.bottom = 20;
|
|
auto menuBar = new BMenuBar (r, "menubar");
|
|
AddChild (menuBar);
|
|
auto runMenu = new BMenu ("Run");
|
|
runMenu->AddItem (new BMenuItem ("Graceful shutdown", new BMessage (M_GRACEFUL_SHUTDOWN), 'G'));
|
|
runMenu->AddItem (new BMenuItem ("Quit", new BMessage (B_QUIT_REQUESTED), 'Q'));
|
|
menuBar->AddItem (runMenu);
|
|
auto commandsMenu = new BMenu ("Commands");
|
|
commandsMenu->AddItem (new BMenuItem ("Run peer test", new BMessage (M_RUN_PEER_TEST), 'P'));
|
|
menuBar->AddItem (commandsMenu);
|
|
auto tunnelsMenu = new BMenu ("Tunnels");
|
|
for (auto& it: i2p::client::context.GetClientTunnels ())
|
|
tunnelsMenu->AddItem (new BMenuItem (it.second->GetName (), new BMessage (M_DUMMY_COMMAND)));
|
|
for (auto& it: i2p::client::context.GetServerTunnels ())
|
|
tunnelsMenu->AddItem (new BMenuItem (it.second->GetName (), new BMessage (M_DUMMY_COMMAND)));
|
|
menuBar->AddItem (tunnelsMenu);
|
|
m_MainView = new BStringView (BRect (20, 21, 300, 250), nullptr, "Starting...", B_FOLLOW_ALL, B_WILL_DRAW);
|
|
m_MainView->SetViewColor (255, 255, 255);
|
|
m_MainView->SetHighColor (0xD4, 0x3B, 0x69);
|
|
BFont font = *be_plain_font;
|
|
font.SetSize (12);
|
|
m_MainView->SetFont (&font);
|
|
AddChild (m_MainView);
|
|
m_MainViewUpdateTimer = std::make_unique<BMessageRunner>(m_Messenger,
|
|
BMessage (C_MAIN_VIEW_UPDATE), MAIN_VIEW_UPDATE_INTERVAL);
|
|
}
|
|
|
|
void MainWindow::UpdateMainView ()
|
|
{
|
|
std::stringstream s;
|
|
i2p::util::PrintMainWindowText (s);
|
|
m_MainView->SetText (s.str ().c_str ());
|
|
}
|
|
|
|
void MainWindow::MessageReceived (BMessage * msg)
|
|
{
|
|
if (!msg) return;
|
|
switch (msg->what)
|
|
{
|
|
case C_MAIN_VIEW_UPDATE:
|
|
UpdateMainView ();
|
|
break;
|
|
case M_GRACEFUL_SHUTDOWN:
|
|
if (!m_GracefulShutdownTimer)
|
|
{
|
|
i2p::context.SetAcceptsTunnels (false);
|
|
Daemon.gracefulShutdownInterval = GRACEFUL_SHUTDOWN_UPDATE_COUNT;
|
|
m_MainViewUpdateTimer = nullptr;
|
|
m_GracefulShutdownTimer = std::make_unique<BMessageRunner>(m_Messenger,
|
|
BMessage (C_GRACEFUL_SHUTDOWN_UPDATE), GRACEFUL_SHUTDOWN_UPDATE_INTERVAL);
|
|
}
|
|
break;
|
|
case C_GRACEFUL_SHUTDOWN_UPDATE:
|
|
if (Daemon.gracefulShutdownInterval > 0)
|
|
{
|
|
UpdateMainView ();
|
|
Daemon.gracefulShutdownInterval--;
|
|
}
|
|
if (!Daemon.gracefulShutdownInterval || i2p::tunnel::tunnels.CountTransitTunnels () <= 0)
|
|
{
|
|
m_GracefulShutdownTimer = nullptr;
|
|
Daemon.gracefulShutdownInterval = 0;
|
|
m_Messenger.SendMessage (B_QUIT_REQUESTED);
|
|
}
|
|
break;
|
|
case B_QUIT_REQUESTED:
|
|
m_MainViewUpdateTimer = nullptr;
|
|
m_GracefulShutdownTimer = nullptr;
|
|
BWindow::MessageReceived (msg);
|
|
break;
|
|
case M_RUN_PEER_TEST:
|
|
i2p::transport::transports.PeerTest ();
|
|
break;
|
|
default:
|
|
BWindow::MessageReceived (msg);
|
|
}
|
|
}
|
|
|
|
I2PApp::I2PApp (): BApplication("application/x-vnd.purplei2p-i2pd")
|
|
{
|
|
}
|
|
|
|
void I2PApp::CreateMainWindow ()
|
|
{
|
|
auto mainWindow = new MainWindow ();
|
|
mainWindow->Show ();
|
|
}
|
|
|
|
namespace i2p
|
|
{
|
|
namespace util
|
|
{
|
|
bool DaemonHaiku::start ()
|
|
{
|
|
I2PApp * app = nullptr;
|
|
if (!isDaemon)
|
|
{
|
|
app = new I2PApp(); // set be_app
|
|
i2p::log::SetThrowFunction ([](const std::string& s)
|
|
{
|
|
auto alert = new BAlert (nullptr, s.c_str (), "Quit", nullptr, nullptr,
|
|
B_WIDTH_AS_USUAL, B_OFFSET_SPACING, B_STOP_ALERT);
|
|
alert->Go ();
|
|
});
|
|
}
|
|
auto ret = Daemon_Singleton::start ();
|
|
if (ret && app)
|
|
app->CreateMainWindow ();
|
|
return ret;
|
|
}
|
|
|
|
void DaemonHaiku::run ()
|
|
{
|
|
if (be_app)
|
|
{
|
|
be_app->Run ();
|
|
delete be_app;
|
|
}
|
|
else
|
|
DaemonUnix::run ();
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|