Update copyright dates
[src/app-framework-binder.git] / src / afb-context.h
1 /*
2  * Copyright (C) 2015-2020 "IoT.bzh"
3  * Author: José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #pragma once
19
20 struct afb_session;
21 struct afb_token;
22 struct afb_cred;
23
24 struct afb_context
25 {
26         struct afb_session *session;    /**< session */
27         struct afb_token *token;        /**< token */
28         struct afb_cred *credentials;   /**< credential */
29
30         const void *api_key;
31         struct afb_context *super;
32         union {
33                 unsigned flags;
34                 struct {
35                         unsigned created: 1;
36                         unsigned validated: 1;
37                         unsigned invalidated: 1;
38                         unsigned closing: 1;
39                         unsigned closed: 1;
40                 };
41         };
42 };
43
44 extern void afb_context_init(struct afb_context *context, struct afb_session *session, struct afb_token *token, struct afb_cred *cred);
45 extern void afb_context_init_validated(struct afb_context *context, struct afb_session *session, struct afb_token *token, struct afb_cred *cred);
46 extern void afb_context_subinit(struct afb_context *context, struct afb_context *super);
47 extern int afb_context_connect(struct afb_context *context, const char *uuid, struct afb_token *token, struct afb_cred *cred);
48 extern int afb_context_connect_validated(struct afb_context *context, const char *uuid, struct afb_token *token, struct afb_cred *cred);
49 extern void afb_context_disconnect(struct afb_context *context);
50 extern const char *afb_context_uuid(struct afb_context *context);
51
52 extern void *afb_context_get(struct afb_context *context);
53 extern int afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*));
54 extern void *afb_context_make(struct afb_context *context, int replace, void *(*make_value)(void *closure), void (*free_value)(void *item), void *closure);
55
56 extern void afb_context_change_token(struct afb_context *context, struct afb_token *token);
57 extern void afb_context_change_cred(struct afb_context *context, struct afb_cred *cred);
58
59 extern int afb_context_on_behalf_import(struct afb_context *context, const char *exported);
60 extern const char *afb_context_on_behalf_export(struct afb_context *context);
61 extern void afb_context_on_behalf_other_context(struct afb_context *context, struct afb_context *other);
62
63 extern int afb_context_has_permission(struct afb_context *context, const char *permission);
64 extern void afb_context_has_permission_async(
65         struct afb_context *context,
66         const char *permission,
67         void (*callback)(void *_closure, int _status),
68         void *closure
69 );
70
71 extern int afb_context_check(struct afb_context *context);
72 extern void afb_context_check_async(
73         struct afb_context *context,
74         void (*callback)(void *_closure, int _status),
75         void *closure
76 );
77
78 extern void afb_context_close(struct afb_context *context);
79 extern int afb_context_check_loa(struct afb_context *context, unsigned loa);
80 extern int afb_context_change_loa(struct afb_context *context, unsigned loa);
81 extern unsigned afb_context_get_loa(struct afb_context *context);
82