/* * mad.cpp * * Copyright (C) 2008 Matthias Schiffer * * 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 . */ #include "Net/ClientConnection.h" #include "Net/IPAddress.h" #include "Common/Backends/SystemBackendPosix.h" #include "Common/Backends/SystemBackendProc.h" #include "Common/Logger.h" #include "Common/Backends/ConsoleLogger.h" #include "Common/Request.h" #include "Common/RequestManager.h" #include "Common/RequestHandlers/StatusRequestHandler.h" #include "Daemon/Backends/NetworkLogger.h" #include "Daemon/Requests/IdentifyRequest.h" #include "Daemon/RequestHandlers/CommandRequestHandler.h" #include using namespace Mad; static void requestFinished(const Common::Request<>&) { Common::Logger::log("Identified."); } int main() { Common::Backends::ConsoleLogger consoleLogger; Common::Logger::registerLogger(&consoleLogger); Net::Connection::init(); Common::RequestManager::init(false); Common::RequestManager::getRequestManager()->registerPacketType(Net::Packet::STATUS); Common::RequestManager::getRequestManager()->registerPacketType(Net::Packet::COMMAND_REBOOT); Common::RequestManager::getRequestManager()->registerPacketType(Net::Packet::COMMAND_SHUTDOWN); Common::Backends::SystemBackendPosix::registerBackend(); Common::Backends::SystemBackendProc::registerBackend(); Net::ClientConnection *connection = new Net::ClientConnection; try { connection->connect(Net::IPAddress("127.0.0.1"), true); while(connection->isConnecting()) { struct pollfd fd = connection->getPollfd(); if(poll(&fd, 1, 10000) > 0) connection->sendReceive(fd.revents); } Common::RequestManager::getRequestManager()->registerConnection(connection); Daemon::Backends::NetworkLogger networkLogger(connection); Common::Logger::registerLogger(&networkLogger); //char hostname[256]; //gethostname(hostname, sizeof(hostname)); //Common::RequestManager::getRequestManager()->sendRequest(connection, std::auto_ptr(new Daemon::Requests::IdentifyRequest(hostname, sigc::ptr_fun(requestFinished)))); Common::RequestManager::getRequestManager()->sendRequest(connection, std::auto_ptr(new Daemon::Requests::IdentifyRequest("test", sigc::ptr_fun(requestFinished)))); while(connection->isConnected()) { struct pollfd fd = connection->getPollfd(); if(poll(&fd, 1, 10000) > 0) connection->sendReceive(fd.revents); } Common::Logger::unregisterLogger(&networkLogger); Common::RequestManager::getRequestManager()->unregisterConnection(connection); } catch(Mad::Common::Exception &e) { Common::Logger::logf(Common::Logger::CRITICAL, "Connection error: %s", e.strerror().c_str()); } delete connection; Net::Connection::deinit(); return 0; }