[1edd6d0] | 1 | /*
|
---|
| 2 | * Copyright (c) 2018 Jiri Svoboda
|
---|
| 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 | #include <async.h>
|
---|
| 30 | #include <errno.h>
|
---|
| 31 | #include <str_error.h>
|
---|
| 32 | #include <ipc/ipc_test.h>
|
---|
| 33 | #include <ipc/services.h>
|
---|
| 34 | #include <loc.h>
|
---|
| 35 | #include <mem.h>
|
---|
| 36 | #include <stdio.h>
|
---|
| 37 | #include <task.h>
|
---|
| 38 |
|
---|
| 39 | #define NAME "ipc-test"
|
---|
| 40 |
|
---|
| 41 | static service_id_t svc_id;
|
---|
| 42 |
|
---|
| 43 | static void ipc_test_connection(ipc_call_t *icall, void *arg)
|
---|
| 44 | {
|
---|
| 45 | /* Accept connection */
|
---|
| 46 | async_accept_0(icall);
|
---|
| 47 |
|
---|
| 48 | while (true) {
|
---|
| 49 | ipc_call_t call;
|
---|
| 50 | async_get_call(&call);
|
---|
| 51 |
|
---|
| 52 | if (!IPC_GET_IMETHOD(call)) {
|
---|
| 53 | async_answer_0(&call, EOK);
|
---|
| 54 | break;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | switch (IPC_GET_IMETHOD(call)) {
|
---|
| 58 | case IPC_TEST_PING:
|
---|
| 59 | async_answer_0(&call, EOK);
|
---|
| 60 | break;
|
---|
| 61 | default:
|
---|
| 62 | async_answer_0(&call, ENOTSUP);
|
---|
| 63 | break;
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | int main(int argc, char *argv[])
|
---|
| 69 | {
|
---|
| 70 | errno_t rc;
|
---|
| 71 |
|
---|
| 72 | printf("%s: IPC test service\n", NAME);
|
---|
| 73 | async_set_fallback_port_handler(ipc_test_connection, NULL);
|
---|
| 74 |
|
---|
| 75 | rc = loc_server_register(NAME);
|
---|
| 76 | if (rc != EOK) {
|
---|
| 77 | printf("%s: Failed registering server. (%s)\n", NAME,
|
---|
| 78 | str_error(rc));
|
---|
| 79 | return rc;
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | rc = loc_service_register(SERVICE_NAME_IPC_TEST, &svc_id);
|
---|
| 83 | if (rc != EOK) {
|
---|
| 84 | printf("%s: Failed registering service. (%s)\n", NAME,
|
---|
| 85 | str_error(rc));
|
---|
| 86 | return rc;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | printf("%s: Accepting connections\n", NAME);
|
---|
| 90 | task_retval(0);
|
---|
| 91 | async_manager();
|
---|
| 92 |
|
---|
| 93 | /* Not reached */
|
---|
| 94 | return 0;
|
---|
| 95 | }
|
---|