2012-05-21 15:39:57 +02:00
|
|
|
/*
|
|
|
|
* \brief LOG service that prints to a terminal
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2012-05-21
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 21:44:47 +01:00
|
|
|
* Copyright (C) 2012-2013 Genode Labs GmbH
|
2012-05-21 15:39:57 +02:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <base/env.h>
|
|
|
|
#include <base/rpc_server.h>
|
|
|
|
#include <base/sleep.h>
|
|
|
|
#include <root/component.h>
|
|
|
|
#include <util/string.h>
|
|
|
|
|
|
|
|
#include <terminal_session/connection.h>
|
|
|
|
#include <cap_session/connection.h>
|
|
|
|
#include <log_session/log_session.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
|
|
|
|
class Termlog_component : public Rpc_object<Log_session>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
enum { LABEL_LEN = 64 };
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
char _label[LABEL_LEN];
|
|
|
|
Terminal::Connection *_terminal;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
Termlog_component(const char *label, Terminal::Connection *terminal)
|
|
|
|
: _terminal(terminal) { snprintf(_label, LABEL_LEN, "[%s] ", label); }
|
|
|
|
|
|
|
|
|
|
|
|
/*****************
|
|
|
|
** Log session **
|
|
|
|
*****************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write a log-message to the terminal.
|
|
|
|
*
|
|
|
|
* The following function's code is a modified variant of the one in:
|
|
|
|
* 'base/src/core/include/log_session_component.h'
|
|
|
|
*/
|
|
|
|
size_t write(String const &string_buf)
|
|
|
|
{
|
2016-05-11 18:21:47 +02:00
|
|
|
if (!(string_buf.valid_string())) {
|
base: avoid use of deprecated base/printf.h
Besides adapting the components to the use of base/log.h, the patch
cleans up a few base headers, i.e., it removes unused includes from
root/component.h, specifically base/heap.h and
ram_session/ram_session.h. Hence, components that relied on the implicit
inclusion of those headers have to manually include those headers now.
While adjusting the log messages, I repeatedly stumbled over the problem
that printing char * arguments is ambiguous. It is unclear whether to
print the argument as pointer or null-terminated string. To overcome
this problem, the patch introduces a new type 'Cstring' that allows the
caller to express that the argument should be handled as null-terminated
string. As a nice side effect, with this type in place, the optional len
argument of the 'String' class could be removed. Instead of supplying a
pair of (char const *, size_t), the constructor accepts a 'Cstring'.
This, in turn, clears the way let the 'String' constructor use the new
output mechanism to assemble a string from multiple arguments (and
thereby getting rid of snprintf within Genode in the near future).
To enforce the explicit resolution of the char * ambiguity, the 'char *'
overload of the 'print' function is marked as deleted.
Issue #1987
2016-07-13 19:07:09 +02:00
|
|
|
Genode::error("corrupted string");
|
2012-05-21 15:39:57 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char const *string = string_buf.string();
|
|
|
|
int len = strlen(string);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Heuristic: The Log console implementation flushes
|
|
|
|
* the output preferably in front of escape
|
|
|
|
* sequences. If the line contains only
|
|
|
|
* the escape sequence, we skip the printing
|
|
|
|
* of the label and cut the line break (last
|
|
|
|
* character).
|
|
|
|
*/
|
|
|
|
enum { ESC = 27 };
|
|
|
|
if ((string[0] == ESC) && (len == 5) && (string[4] == '\n')) {
|
2014-08-19 16:58:38 +02:00
|
|
|
_terminal->write(string, len - 1);
|
2012-05-21 15:39:57 +02:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
_terminal->write(_label, strlen(_label));
|
|
|
|
_terminal->write(string, len);
|
|
|
|
|
|
|
|
/* if last character of string was not a line break, add one */
|
|
|
|
if ((len > 0) && (string[len - 1] != '\n'))
|
|
|
|
_terminal->write("\n", 1);
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Termlog_root : public Root_component<Termlog_component>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
Terminal::Connection *_terminal;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Root component interface
|
|
|
|
*/
|
|
|
|
Termlog_component *_create_session(const char *args)
|
|
|
|
{
|
|
|
|
size_t ram_quota =
|
|
|
|
Arg_string::find_arg(args, "ram_quota" ).ulong_value(0);
|
|
|
|
|
|
|
|
/* delete ram quota by the memory needed for the session */
|
|
|
|
size_t session_size = max((size_t)4096, sizeof(Termlog_component));
|
|
|
|
if (ram_quota < session_size)
|
|
|
|
throw Root::Quota_exceeded();
|
|
|
|
|
|
|
|
char label_buf[Termlog_component::LABEL_LEN];
|
|
|
|
|
|
|
|
Arg label_arg = Arg_string::find_arg(args, "label");
|
|
|
|
label_arg.string(label_buf, sizeof(label_buf), "");
|
|
|
|
|
|
|
|
return new (md_alloc()) Termlog_component(label_buf, _terminal);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param session_ep entry point for managing cpu session objects
|
|
|
|
* \param md_alloc meta-data allocator to be used by root component
|
|
|
|
*/
|
|
|
|
Termlog_root(Rpc_entrypoint *session_ep, Allocator *md_alloc,
|
|
|
|
Terminal::Connection *terminal)
|
|
|
|
: Root_component<Termlog_component>(session_ep, md_alloc),
|
|
|
|
_terminal(terminal) { }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
using namespace Genode;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open Terminal session
|
|
|
|
*/
|
|
|
|
static Terminal::Connection terminal;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize server entry point
|
|
|
|
*/
|
|
|
|
enum { STACK_SIZE = 4096 };
|
|
|
|
static Cap_connection cap;
|
|
|
|
static Rpc_entrypoint ep(&cap, STACK_SIZE, "termlog_ep");
|
|
|
|
static Termlog_root termlog_root(&ep, env()->heap(), &terminal);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Announce services
|
|
|
|
*/
|
|
|
|
env()->parent()->announce(ep.manage(&termlog_root));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Got to sleep forever
|
|
|
|
*/
|
|
|
|
sleep_forever();
|
|
|
|
return 0;
|
|
|
|
}
|