[973efd36] | 1 | /*
|
---|
| 2 | * Copyright (c) 2019 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 | /** @addtogroup libddev
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /**
|
---|
| 33 | * @file
|
---|
| 34 | * @brief Display protocol server stub
|
---|
| 35 | */
|
---|
| 36 |
|
---|
| 37 | #include <ddev_srv.h>
|
---|
| 38 | #include <errno.h>
|
---|
| 39 | #include <io/log.h>
|
---|
| 40 | #include <ipc/ddev.h>
|
---|
| 41 | #include <mem.h>
|
---|
| 42 | #include <stdlib.h>
|
---|
| 43 | #include <stddef.h>
|
---|
| 44 |
|
---|
| 45 | #include <stdio.h>
|
---|
| 46 |
|
---|
[0b63dc2] | 47 | /** Connect to a GC.
|
---|
| 48 | *
|
---|
| 49 | * XXX As a workaround here we tell the client the values of arg2 and arg3
|
---|
| 50 | * needed to connect to the GC using async_connect_me_to(), these need
|
---|
| 51 | * to be provided by the ddev_ops_t.get_gc. Different values are needed
|
---|
| 52 | * for a DDF driver or a regular server. This would not be needed if we
|
---|
| 53 | * had a proper way of creating an endpoint and passing it to our client.
|
---|
| 54 | */
|
---|
| 55 | static void ddev_get_gc_srv(ddev_srv_t *srv, ipc_call_t *icall)
|
---|
| 56 | {
|
---|
| 57 | sysarg_t arg2;
|
---|
| 58 | sysarg_t arg3;
|
---|
| 59 | errno_t rc;
|
---|
| 60 |
|
---|
| 61 | printf("ddev_get_gc_srv\n");
|
---|
| 62 |
|
---|
| 63 | if (srv->ops->get_gc == NULL) {
|
---|
| 64 | async_answer_0(icall, ENOTSUP);
|
---|
| 65 | return;
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | rc = srv->ops->get_gc(srv->arg, &arg2, &arg3);
|
---|
| 69 | async_answer_2(icall, rc, arg2, arg3);
|
---|
| 70 | }
|
---|
| 71 |
|
---|
[973efd36] | 72 | void ddev_conn(ipc_call_t *icall, ddev_srv_t *srv)
|
---|
| 73 | {
|
---|
| 74 | /* Accept the connection */
|
---|
| 75 | async_accept_0(icall);
|
---|
[0b63dc2] | 76 | printf("ddev_conn\n");
|
---|
[973efd36] | 77 |
|
---|
| 78 | while (true) {
|
---|
| 79 | ipc_call_t call;
|
---|
| 80 |
|
---|
| 81 | async_get_call(&call);
|
---|
| 82 | sysarg_t method = ipc_get_imethod(&call);
|
---|
| 83 |
|
---|
| 84 | if (!method) {
|
---|
| 85 | /* The other side has hung up */
|
---|
| 86 | async_answer_0(&call, EOK);
|
---|
| 87 | break;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | printf("display_conn method=%u\n", (unsigned) method);
|
---|
| 91 | switch (method) {
|
---|
| 92 | case DDEV_GET_GC:
|
---|
[0b63dc2] | 93 | ddev_get_gc_srv(srv, &call);
|
---|
| 94 | break;
|
---|
[973efd36] | 95 | default:
|
---|
| 96 | async_answer_0(&call, ENOTSUP);
|
---|
| 97 | }
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | /* Hang up callback session */
|
---|
| 101 | if (srv->client_sess != NULL) {
|
---|
| 102 | async_hangup(srv->client_sess);
|
---|
| 103 | srv->client_sess = NULL;
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 |
|
---|
| 107 | /** Initialize display device server structure
|
---|
| 108 | *
|
---|
| 109 | * @param srv Display device server structure to initialize
|
---|
| 110 | */
|
---|
| 111 | void ddev_srv_initialize(ddev_srv_t *srv)
|
---|
| 112 | {
|
---|
| 113 | memset(srv, 0, sizeof(*srv));
|
---|
| 114 | }
|
---|
| 115 |
|
---|
| 116 | /** @}
|
---|
| 117 | */
|
---|