uvtd: vt: implement VT_GETMODE/SETMODE ioctl state-tracking
[platform/upstream/kmscon.git] / src / uvtd_ctx.h
1 /*
2  * uvtd - User-space VT daemon
3  *
4  * Copyright (c) 2013 David Herrmann <dh.herrmann@gmail.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files
8  * (the "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included
15  * in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25
26 /*
27  * Contexts
28  * A context manages a single UVT seat. It creates the seat object, allocates
29  * the VTs and provides all the bookkeeping for the sessions. It's the main
30  * entry point after the seat selectors in uvtd-main.
31  */
32
33 #ifndef UVTD_CTX_H
34 #define UVTD_CTX_H
35
36 #include <stdlib.h>
37 #include "eloop.h"
38 #include "uvt.h"
39
40 struct uvtd_ctx;
41
42 int uvtd_ctx_new(struct uvtd_ctx **out, const char *seatname,
43                  struct ev_eloop *eloop, struct uvt_ctx *uctx);
44 void uvtd_ctx_free(struct uvtd_ctx *ctx);
45
46 void uvtd_ctx_reconf(struct uvtd_ctx *ctx, unsigned int legacy_num);
47
48 #endif /* UVTD_CTX_H */