tesses-webserver-cpp/wwwgentest.cpp

103 lines
2.3 KiB
C++

#include "WWWGen.hpp"
#if defined(GEKKO)
#include <stdio.h>
#include <stdlib.h>
#include <gccore.h>
#include <fat.h>
static void *xfb = NULL;
static GXRModeObj *rmode = NULL;
#endif
TESSESWEBSERVER_STATIC_DECLARATION
using namespace Tesses::WebServer;
using namespace Tesses::WebServer::ScriptEngine;
class DummyServer : public IServer
{
public:
bool Handle(ServerContext* ctx)
{
std::string resp = {};
for(auto param : ctx->queryParams.GetAll())
{
resp.append(param.first);
resp.append(": ");
resp.append(param.second);
resp.append("\r\n");
}
ctx->SetContentType("text/plain")->SendText(resp);
return true;
}
};
#if defined(GEKKO)
void resetWii(u32 irq, void* ctx)
{
HttpServerListener::StopViaInterrupt(0);
}
#endif
int main(int argc,char** argv)
{
#if defined(GEKKO)
fatInitDefault();
// Initialise the video system
VIDEO_Init();
// This function initialises the attached controllers
// Obtain the preferred video mode from the system
// This will correspond to the settings in the Wii menu
rmode = VIDEO_GetPreferredMode(NULL);
// Allocate memory for the display in the uncached region
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
// Initialise the console, required for printf
console_init(xfb,20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*VI_DISPLAY_PIX_SZ);
// Set up the video registers with the chosen mode
VIDEO_Configure(rmode);
// Tell the video hardware where our display memory is
VIDEO_SetNextFramebuffer(xfb);
// Make the display visible
VIDEO_SetBlack(false);
// Flush the video register changes to the hardware
VIDEO_Flush();
// Wait for Video setup to complete
VIDEO_WaitVSync();
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();
// The console understands VT terminal escape codes
// This positions the cursor on row 2, column 0
// we can use variables for this with format codes too
// e.g. printf ("\x1b[%d;%dH", row, column );
printf("\x1b[2;0H");
SYS_SetResetCallback(resetWii);
#endif
HttpServerListener::Init();
WWWGen* myServer = new WWWGen();
HttpServerListener::Listen(myServer,2003/*new SSLCerts("/etc/letsencrypt/live2")*/);
HttpServerListener::WaitTillInterrupted();
delete myServer;
HttpServerListener::FreeServer();
return 0;
}