Change the effect of close session
[src/app-framework-binder.git] / src / afb-context.c
1 /*
2  * Copyright (C) 2015, 2016, 2017 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  * Author José Bollo <jose.bollo@iot.bzh>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #define _GNU_SOURCE
20
21 #include <assert.h>
22 #include <stdlib.h>
23 #include <stdint.h>
24
25 #include "afb-session.h"
26 #include "afb-context.h"
27
28 static void init_context(struct afb_context *context, struct afb_session *session, const char *token)
29 {
30         assert(session != NULL);
31
32         /* reset the context for the session */
33         context->session = session;
34         context->flags = 0;
35         context->super = NULL;
36         context->api_key = NULL;
37
38         /* check the token */
39         if (token != NULL) {
40                 if (afb_session_check_token(session, token))
41                         context->validated = 1;
42                 else
43                         context->invalidated = 1;
44         }
45 }
46
47 void afb_context_init(struct afb_context *context, struct afb_session *session, const char *token)
48 {
49         init_context(context, afb_session_addref(session), token);
50 }
51
52 void afb_context_subinit(struct afb_context *context, struct afb_context *super)
53 {
54         *context = *super;
55         context->super = super;
56 }
57
58 int afb_context_connect(struct afb_context *context, const char *uuid, const char *token)
59 {
60         int created;
61         struct afb_session *session;
62
63         session = afb_session_get (uuid, &created);
64         if (session == NULL)
65                 return -1;
66         init_context(context, session, token);
67         if (created) {
68                 context->created = 1;
69                 /* context->refreshing = 1; */
70         }
71         return 0;
72 }
73
74 void afb_context_disconnect(struct afb_context *context)
75 {
76         if (context->session && !context->super) {
77                 if (context->refreshing && !context->refreshed) {
78                         afb_session_new_token (context->session);
79                         context->refreshed = 1;
80                 }
81                 if (context->closing && !context->closed) {
82                         afb_context_change_loa(context, 0);
83                         afb_context_set(context, NULL, NULL);
84                         context->closed = 1;
85                 }
86                 afb_session_unref(context->session);
87                 context->session = NULL;
88         }
89 }
90
91 const char *afb_context_sent_token(struct afb_context *context)
92 {
93         if (context->session == NULL || context->closing || context->super)
94                 return NULL;
95         if (!context->refreshing)
96                 return NULL;
97         if (!context->refreshed) {
98                 afb_session_new_token (context->session);
99                 context->refreshed = 1;
100         }
101         return afb_session_token(context->session);
102 }
103
104 const char *afb_context_sent_uuid(struct afb_context *context)
105 {
106         if (context->session == NULL || context->closing || context->super)
107                 return NULL;
108         if (!context->created)
109                 return NULL;
110         return afb_session_uuid(context->session);
111 }
112
113 void *afb_context_data(struct afb_context *context, void *(*make_value)(void), void (*free_value)(void*))
114 {
115         assert(context->session != NULL);
116         return afb_session_cookie(context->session, context->api_key, make_value, free_value);
117 }
118
119 void *afb_context_get(struct afb_context *context)
120 {
121         assert(context->session != NULL);
122         return afb_session_get_cookie(context->session, context->api_key);
123 }
124
125 void afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*))
126 {
127         int rc;
128         assert(context->session != NULL);
129         rc = afb_session_set_cookie(context->session, context->api_key, value, free_value);
130         (void)rc; /* TODO */
131 }
132
133 void afb_context_close(struct afb_context *context)
134 {
135         context->closing = 1;
136 }
137
138 void afb_context_refresh(struct afb_context *context)
139 {
140         if (context->super)
141                 afb_context_refresh(context->super);
142         else {
143                 assert(context->validated);
144                 context->refreshing = 1;
145         }
146 }
147
148 int afb_context_check(struct afb_context *context)
149 {
150         if (context->super)
151                 return afb_context_check(context);
152         return context->validated;
153 }
154
155 int afb_context_check_loa(struct afb_context *context, unsigned loa)
156 {
157         return afb_context_get_loa(context) >= loa;
158 }
159
160 static inline void *loa_key(struct afb_context *context)
161 {
162         return (void*)(1+(intptr_t)(context->api_key));
163 }
164
165 static inline void *loa2ptr(unsigned loa)
166 {
167         return (void*)(intptr_t)loa;
168 }
169
170 static inline unsigned ptr2loa(void *ptr)
171 {
172         return (unsigned)(intptr_t)ptr;
173 }
174
175 int afb_context_change_loa(struct afb_context *context, unsigned loa)
176 {
177         if (!context->validated || loa > 7)
178                 return 0;
179
180         return 0 <= afb_session_set_cookie(context->session, loa_key(context), loa2ptr(loa), NULL);
181 }
182
183 unsigned afb_context_get_loa(struct afb_context *context)
184 {
185         assert(context->session != NULL);
186         return ptr2loa(afb_session_get_cookie(context->session, loa_key(context)));
187 }
188
189