source: mainline/uspace/srv/logger/writer.c@ 516e780

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 516e780 was 4122410, checked in by Jakub Jermar <jakub@…>, 7 years ago

Improve Doxygen documentaion

This is stil WiP. A number of libraries, drivers and services were
converted to using a more hierarchical and decentralized scheme when it
comes to specifying to which doxygen group they belong.

  • Property mode set to 100644
File size: 3.6 KB
RevLine 
[e005f92]1/*
2 * Copyright (c) 2012 Vojtech Horky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/**
[4122410]30 * @addtogroup logger
[e005f92]31 * @{
32 */
33
34/** @file
35 */
36
37#include <ipc/services.h>
38#include <ipc/logger.h>
39#include <io/log.h>
40#include <io/logctl.h>
[bd6ff94]41#include <io/klog.h>
[e005f92]42#include <ns.h>
43#include <async.h>
44#include <errno.h>
[38d150e]45#include <stdio.h>
46#include <stdlib.h>
[e005f92]47#include <str_error.h>
48#include "logger.h"
49
50
[f039dba]51static logger_log_t *handle_create_log(sysarg_t parent)
[e005f92]52{
53 void *name;
[b7fd2a0]54 errno_t rc = async_data_write_accept(&name, true, 1, 0, 0, NULL);
[cba45af]55 if (rc != EOK)
[e005f92]56 return NULL;
57
[1dec7cb]58 logger_log_t *log = find_or_create_log_and_lock(name, parent);
[e005f92]59
60 free(name);
61
[cba45af]62 return log;
[e005f92]63}
64
[b7fd2a0]65static errno_t handle_receive_message(sysarg_t log_id, sysarg_t level)
[e005f92]66{
[1dec7cb]67 logger_log_t *log = find_log_by_id_and_lock(log_id);
[cba45af]68 if (log == NULL)
69 return ENOENT;
70
[3cf862f]71 void *message = NULL;
[b7fd2a0]72 errno_t rc = async_data_write_accept(&message, true, 1, 0, 0, NULL);
[cba45af]73 if (rc != EOK)
[3cf862f]74 goto leave;
[cba45af]75
[f039dba]76 if (!shall_log_message(log, level)) {
[3cf862f]77 rc = EOK;
78 goto leave;
[e005f92]79 }
80
[4c6de4f]81 KLOG_PRINTF(level, "[%s] %s: %s",
[f039dba]82 log->full_name, log_level_str(level),
[cba45af]83 (const char *) message);
[90dc458]84 write_to_log(log, level, message);
[e005f92]85
[3cf862f]86 rc = EOK;
87
88leave:
[1dec7cb]89 log_unlock(log);
[e005f92]90 free(message);
91
[3cf862f]92 return rc;
[e005f92]93}
94
[984a9ba]95void logger_connection_handler_writer(ipc_call_t *icall)
[e005f92]96{
[338d54a7]97 logger_log_t *log;
98 errno_t rc;
99
[cba45af]100 /* Acknowledge the connection. */
[984a9ba]101 async_answer_0(icall, EOK);
[e005f92]102
[42bde6a]103 logger_log("writer: new client.\n");
[e005f92]104
[131d9a4]105 logger_registered_logs_t registered_logs;
106 registered_logs_init(&registered_logs);
107
[e005f92]108 while (true) {
109 ipc_call_t call;
[984a9ba]110 async_get_call(&call);
[e005f92]111
112 if (!IPC_GET_IMETHOD(call))
113 break;
114
115 switch (IPC_GET_IMETHOD(call)) {
[338d54a7]116 case LOGGER_WRITER_CREATE_LOG:
117 log = handle_create_log(IPC_GET_ARG1(call));
[cba45af]118 if (log == NULL) {
[984a9ba]119 async_answer_0(&call, ENOMEM);
[cba45af]120 break;
121 }
[131d9a4]122 if (!register_log(&registered_logs, log)) {
123 log_unlock(log);
[984a9ba]124 async_answer_0(&call, ELIMIT);
[131d9a4]125 break;
126 }
[1dec7cb]127 log_unlock(log);
[984a9ba]128 async_answer_1(&call, EOK, (sysarg_t) log);
[e005f92]129 break;
[338d54a7]130 case LOGGER_WRITER_MESSAGE:
131 rc = handle_receive_message(IPC_GET_ARG1(call),
[f039dba]132 IPC_GET_ARG2(call));
[984a9ba]133 async_answer_0(&call, rc);
[e005f92]134 break;
135 default:
[984a9ba]136 async_answer_0(&call, EINVAL);
[e005f92]137 break;
138 }
139 }
140
[131d9a4]141 unregister_logs(&registered_logs);
[42bde6a]142 logger_log("writer: client terminated.\n");
[e005f92]143}
144
145/**
146 * @}
147 */
Note: See TracBrowser for help on using the repository browser.