package eliom
Advanced client/server Web and mobile framework
Install
Dune Dependency
Authors
Maintainers
Sources
11.1.1.tar.gz
md5=c8c67fe5fb8d3f44a3b17cc4a93a0e62
sha512=e58557a1b525efd011e0eb539b112b53e6c012ac3fb2153c251be030eda483dd3b19de625707cf5ffebd97fa6a7fabfb8a6aae8e8a61c79e0bd7ad2d289df9a9
doc/src/eliom.server/eliommod_sessiongroups.ml.html
Source file eliommod_sessiongroups.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
(* Ocsigen * http://www.ocsigen.org * Module eliomsessiongroups.ml * Copyright (C) 2007 Vincent Balat * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, with linking exception; * either version 2.1 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *) open Eliom_lib let make_full_named_group_name_ ~ sitedata g = Eliom_common.get_site_dir_string sitedata, cookie_level, Left g let make_full_group_name ~ ri site_dir_string ipv4mask ipv6mask = function (* The scope is the scope of group members (`Session by default). *) | None -> ( site_dir_string , cookie_level , Right (Eliom_common.network_of_ip (Ocsigen_request.remote_ip_parsed ri) ipv4mask ipv6mask) ) | Some g -> site_dir_string, cookie_level, Left g let make_persistent_full_group_name = Eliom_common.make_persistent_full_group_name let getsessgrp a = a let getperssessgrp = Eliom_common.getperssessgrp module type MEMTAB = sig type group_of_group_data val add : ?set_max:int -> Eliom_common.sitedata -> string -> Eliom_common.cookie_level Eliom_common.sessgrp -> string Ocsigen_cache.Dlist.node val remove : 'a Ocsigen_cache.Dlist.node -> unit val remove_group : Eliom_common.cookie_level Eliom_common.sessgrp -> unit val find : [< Eliom_common.cookie_level] Eliom_common.sessgrp -> string Ocsigen_cache.Dlist.t (** returns the dlist containing all session group elements *) val find_node_in_group_of_groups : Eliom_common.cookie_level Eliom_common.sessgrp -> group_of_group_data option (** Groups of browser sessions belongs to a group of groups. As these groups are not associated to a cookie, we put this information here. *) val move : ?set_max:int -> Eliom_common.sitedata -> string Ocsigen_cache.Dlist.node -> Eliom_common.cookie_level Eliom_common.sessgrp -> string Ocsigen_cache.Dlist.node val up : string Ocsigen_cache.Dlist.node -> unit val nb_of_groups : unit -> int val group_size : Eliom_common.cookie_level Eliom_common.sessgrp -> int val set_max : 'a Ocsigen_cache.Dlist.node -> int -> unit end module GroupTable = Hashtbl.Make (struct type t = Eliom_common.cookie_level Eliom_common.sessgrp let equal = ( = ) let hash = Hashtbl.hash end) module Make (A : sig type group_of_group_data val table : (group_of_group_data option * string Ocsigen_cache.Dlist.t) GroupTable.t val close_session : Eliom_common.sitedata -> string -> unit val max_tab_per_session : Eliom_common.sitedata -> int val max_session_per_group : Eliom_common.sitedata -> int val max_session_per_ip : Eliom_common.sitedata -> int val clean_session : Eliom_common.sitedata -> GroupTable.key -> (GroupTable.key -> group_of_group_data option) -> (string Ocsigen_cache.Dlist.node -> unit) -> (group_of_group_data -> unit) -> unit val node_of_group_of_group_data : group_of_group_data -> [`Session] Eliom_common.sessgrp Ocsigen_cache.Dlist.node val create_group_of_group_data : Eliom_common.sitedata -> [`Session] Eliom_common.sessgrp Ocsigen_cache.Dlist.node -> group_of_group_data end) : MEMTAB with type group_of_group_data = A.group_of_group_data = struct type group_of_group_data = A.group_of_group_data let grouptable = A.table let find g = snd (GroupTable.find grouptable g) let find_node_in_group_of_groups g = try fst (GroupTable.find grouptable g) with Not_found -> None let remove node = Ocsigen_cache.Dlist.remove node let remove_group sess_grp = try let cl = find sess_grp in let rec close_all cl = match Ocsigen_cache.Dlist.oldest cl with | Some node -> Ocsigen_cache.Dlist.remove node; close_all cl | None -> () in close_all cl (* will remove the group using finaliser *) with Not_found -> () let remove_if_empty sitedata sess_grp cl = if Ocsigen_cache.Dlist.size cl = 0 (* finaliser after *) then ( A.clean_session sitedata sess_grp find_node_in_group_of_groups remove (fun n -> remove (A.node_of_group_of_group_data n)); GroupTable.remove grouptable sess_grp) let get_cl ?set_max sitedata sess_grp = try let cl = find sess_grp in (match set_max with | None -> () | Some v -> ignore (Ocsigen_cache.Dlist.set_maxsize cl v)); cl with Not_found -> (* We create a group *) let size = match set_max, sess_grp with | None, (_, `Session, Left _) -> A.max_session_per_group sitedata | None, (_, `Client_process, Left _) -> A.max_tab_per_session sitedata | None, (_, `Session, Right _) -> A.max_session_per_ip sitedata | None, _ -> assert false | Some v, _ -> v in let = Tuple3.snd sess_grp in let cl = Ocsigen_cache.Dlist.create size in Ocsigen_cache.Dlist.set_finaliser_after (fun node -> (* Finaliser of sessions and client processes *) let name = Ocsigen_cache.Dlist.value node in (* First we close all subsessions (that is, all sessions in the group associated to the session) *) (match cookie_level with (* | `Session_group -> assert false As there is no table of groups of groups (only one group of groups for each site), the finaliser for these groups is created in eliommod.ml *) | `Session (* We are closing a browser session *) -> (* First we close all tab sessions in the session (subgrp): *) let subgrp = make_full_named_group_name_ ~cookie_level:`Client_process sitedata name in remove_group subgrp | `Client_process (* We are closing a tab session *) -> ()); (* Then we close all session tables: *) A.close_session sitedata name; (* If the dlist is empty, we remove it from the group table (and possibly close the group itself): *) remove_if_empty sitedata sess_grp cl) cl; let node_in_group_of_group = match cookie_level with | `Session -> ignore (Ocsigen_cache.Dlist.add sess_grp sitedata.Eliom_common.group_of_groups); Ocsigen_cache.Dlist.newest sitedata.Eliom_common.group_of_groups | _ -> None in let group_of_group_data = Option.map (A.create_group_of_group_data sitedata) node_in_group_of_group in GroupTable.add grouptable sess_grp (group_of_group_data, cl); cl let add ?set_max sitedata sess_id sess_grp = let cl = get_cl ?set_max sitedata sess_grp in ignore (Ocsigen_cache.Dlist.add sess_id cl); match Ocsigen_cache.Dlist.newest cl with | Some v -> v | None -> assert false let up node = Ocsigen_cache.Dlist.up node let move ?set_max sitedata node sess_grp = (* if set_max <> None || grp1 <> grp2 then begin *) let cl = get_cl ?set_max sitedata sess_grp in ignore (Ocsigen_cache.Dlist.move node cl); match Ocsigen_cache.Dlist.newest cl with | Some v -> v | None -> assert false (* end else [] *) let nb_of_groups () = GroupTable.length grouptable let group_size sess_grp = try let cl = find sess_grp in Ocsigen_cache.Dlist.size cl with Not_found -> 0 let set_max node i = match Ocsigen_cache.Dlist.list_of node with | None -> () | Some cl -> ignore (Ocsigen_cache.Dlist.set_maxsize cl i) end module Data = Make (struct type group_of_group_data = [`Session] Eliom_common.sessgrp Ocsigen_cache.Dlist.node let table : (group_of_group_data option * string Ocsigen_cache.Dlist.t) GroupTable.t = (* The table associates the dlist for a group to a full session group name. It work both for groups of tab sessions and groups of browser sessions. For groups of groups, we do not need that table, as there is only one group of groups for each site (the dlist is found in sitedata). The dlist is automatically removed from the table when it becomes empty, using the finaliser of nodes. In the case of groups of browser sessions, the session group is also associated to a node which corresponds to the node of that group in the group of groups (one group of groups for each site). *) GroupTable.create 100 let close_session sitedata sess_id = Eliom_common.SessionCookies.remove sitedata.Eliom_common.session_data sess_id; (* iterate on all session data tables: *) sitedata.Eliom_common.remove_session_data sess_id (* see also in eliommod.ml if you modify this *) let max_tab_per_session sitedata = fst sitedata.Eliom_common.max_volatile_data_tab_sessions_per_group let max_session_per_group sitedata = fst sitedata.Eliom_common.max_volatile_data_sessions_per_group let max_session_per_ip sitedata = fst sitedata.Eliom_common.max_volatile_data_sessions_per_subnet let clean_session sitedata sess_grp find_node_in_group_of_groups remove1 remove2 = (* We removed the last session from a group. Do we want to close the group completely? - For volatile browser sessions, yes. We do not keep group data when there is no session in the group. We remove the group of groups from the site dlist. -- Vincent 2011/08: This is not coherent with persistent group data! But as I do not see any correct use of volatile group data for now. And there is a risk of memory leak if we keep them. Besides, volatile sessions are (hopefully) going to disappear soon. - For tab sessions, yes if the browser cookie is not bound in tables and is not in a group (like in Eliommod_gc) (means that we do not use the browser session). *) (*VVV See also in Eliommod_gc and Eliom_state.close_volatile_session_if_empty. Should we use this function here? *) (*VVV remove is not polymorphic enough -> remove1 remove2 *) match (sess_grp : GroupTable.key) with | _, `Client_process, Left sess_id -> ( try let {Eliom_common.Data_cookie.session_group; session_group_node; _} = Eliom_common.SessionCookies.find sitedata.Eliom_common.session_data sess_id in match !session_group with | _, `Session, Right _ (* no group *) when sitedata.Eliom_common.not_bound_in_data_tables sess_id -> remove1 session_group_node | _ -> () with Not_found -> ()) | _, `Session, _ -> ( match find_node_in_group_of_groups sess_grp with | Some node -> remove2 node | None -> ()) | _ -> () let node_of_group_of_group_data x = x let create_group_of_group_data _ x = x end) module Serv = Make (struct type group_of_group_data = Eliom_common.tables ref * [`Session] Eliom_common.sessgrp Ocsigen_cache.Dlist.node let table : (group_of_group_data option * string Ocsigen_cache.Dlist.t) GroupTable.t = GroupTable.create 100 let close_session sitedata sess_id = Eliom_common.SessionCookies.remove sitedata.Eliom_common.session_services sess_id let max_tab_per_session sitedata = fst sitedata.Eliom_common.max_service_tab_sessions_per_group let max_session_per_group sitedata = fst sitedata.Eliom_common.max_service_sessions_per_group let max_session_per_ip sitedata = fst sitedata.Eliom_common.max_service_sessions_per_subnet let clean_session sitedata sess_grp find_node_in_group_of_groups remove1 remove2 = (* We removed the last session from a group. Do we want to close the group completely? - For volatile browser sessions, yes. We do not keep group data when there is no session in the group. We remove the group of groups from the site dlist. -- Vincent 2011/08: This is not coherent with persistent group data! But as I do not see any correct use of volatile group data for now. And there is a risk of memory leak if we keep them. Besides, volatile sessions are (hopefully) going to disappear soon. - For tab sessions, yes if there are no session services in the browser service table. (means that we do not use the browser session). *) (*VVV We close even if browser session is in a group. It is not coherent with data sessions. *) (*VVV See also in Eliommod_gc and Eliom_state.close_service_session_if_empty. Should we use this function here? *) (*VVV remove is not polymorphic enough -> remove1 remove2 *) match (sess_grp : GroupTable.key) with | _, `Client_process, Left sess_id -> ( try let { Eliom_common.Service_cookie.session_table = tables ; session_group_node ; _ } = Eliom_common.SessionCookies.find sitedata.Eliom_common.session_services sess_id in if Eliom_common.service_tables_are_empty tables then remove1 session_group_node with Not_found -> ()) | _, `Session, _ -> ( match find_node_in_group_of_groups sess_grp with | Some node -> remove2 node | None -> ()) | _ -> () let node_of_group_of_group_data = snd let create_group_of_group_data sitedata x = ref (Eliom_common.new_service_session_tables sitedata), x (*VVV Check when the table is collected *) end) type nbmax = Val of int | Default | Nolimit let cut n l = let rec aux n = function | [] -> [], [] | l when n <= 1 -> [], l | a :: l -> let l1, l2 = aux (n - 1) l in a :: l1, l2 in match n with None -> l, [] (* no limitation *) | Some n -> aux n l module Pers = struct (*VVV Verify this carefully! *) (*VVV VERIFY concurrent access *) module Ocsipersist = Eliom_common.Ocsipersist.Polymorphic let grouptable : (nbmax * string list) Ocsipersist.table Lwt.t Lazy.t = lazy (Ocsipersist.open_table "__eliom_session_group_table") (* It is lazy because if the module is linked statically, the creation of the table must happen after initialisation of ocsipersist (after reading the configuration file to know the location of the table) *) let find g = match g with | None -> Lwt.return_nil | Some g -> Lwt.catch (fun () -> !!grouptable >>= fun grouptable -> Ocsipersist.find grouptable (Eliom_common.string_of_perssessgrp g) >>= fun (_, a) -> Lwt.return a) (function Not_found -> Lwt.return_nil | e -> Lwt.fail e) let add ?set_max defaultmax sess_id sess_grp = match sess_grp with | Some sg -> let sg = Eliom_common.string_of_perssessgrp sg in Lwt.catch (fun () -> !!grouptable >>= fun grouptable -> Ocsipersist.find grouptable sg >>= fun (max2, cl) -> let max, newmax = match set_max with | None -> ( (match max2 with | Default -> defaultmax | Nolimit -> None | Val m -> Some m) , max2 ) | Some None -> None, Nolimit | Some (Some v) -> Some v, Val v in let cl, toclose = cut max cl in Ocsipersist.replace_if_exists grouptable sg (newmax, sess_id :: cl) >>= fun () -> Lwt.return toclose) (function | Not_found -> let max = match set_max with | None -> Default | Some None -> Nolimit | Some (Some v) -> Val v in !!grouptable >>= fun grouptable -> Ocsipersist.add grouptable sg (max, [sess_id]) >>= fun () -> Lwt.return_nil | e -> Lwt.fail e) | None -> Lwt.return_nil let rec remove_group ~ sitedata sess_grp = (* cookie_level is the scope of group members *) (*VVV NEW 201007 closing all sessions in the group and removing group data *) (*VVV VERIFY concurrent access *) (*VVV Check this carefully!!!! Verify the order of actions. *) Lwt.catch (fun () -> (* First we close all sessions in the group *) find sess_grp >>= fun cl -> Lwt_list.iter_p (close_persistent_session2 ~cookie_level: (match cookie_level with | `Client_process _ -> `Client_process | `Session -> `Session) sitedata None) cl (* None because we will close the group *) >>= fun () -> (* Then, we remove group data: *) (match sess_grp with | None -> Lwt.return_unit | Some sg -> ( match Eliom_common.getperssessgrp sg with | _, _, Right _ -> (* No group has been set. No group table. Data associated to default (automatic) groups is removed when closing associated sessions. *) Lwt.return_unit | _, _, Left group_name -> ( Eliom_common.Persistent_tables.remove_key_from_all_tables group_name >>= fun () -> (* If it is associated to a session, we remove the session from its group, and we remove cookie info: *) match cookie_level with | `Client_process grp -> (* We are closing a browser session, belonging to the group grp *) (* group_name is the cookie value *) remove sitedata group_name grp | _ -> Lwt.return_unit))) >>= fun () -> (* Then, we remove group from group table: *) match sess_grp with | Some sg -> let sg = Eliom_common.string_of_perssessgrp sg in !!grouptable >>= fun grouptable -> Ocsipersist.remove grouptable sg | None -> Lwt.return_unit) (function Not_found -> Lwt.return_unit | e -> Lwt.fail e) (* close a persistent session (tab or browser) and the associated group (if browser session) by cookie value *) and close_persistent_session2 ~ sitedata fullsessgrp = (*VVV Check this carefully!!!! *) (*VVV Optimize the number of marshal/unmarshal (getperssessgrp) *) Lwt.catch (fun () -> match cookie_level with | `Client_process -> (* We remove the session from its group: *) remove sitedata cookie fullsessgrp >>= fun () -> (* Then, we remove session data: *) Eliom_common.Persistent_tables.remove_key_from_all_tables cookie | `Session -> remove_group ~cookie_level:(`Client_process fullsessgrp) sitedata (Eliom_common.make_persistent_full_group_name ~cookie_level:`Client_process (Eliom_common.get_site_dir_string sitedata) (Some cookie))) (function Not_found -> Lwt.return_unit | e -> Lwt.fail e) and remove _sitedata sess_id sess_grp = match sess_grp with | Some sg0 -> let sg = Eliom_common.string_of_perssessgrp sg0 in Lwt.catch (fun () -> !!grouptable >>= fun grouptable -> Ocsipersist.find grouptable sg >>= fun (max, cl) -> let newcl = List.remove_first_if_any sess_id cl in (* Before 2018-10-18, we were closing the session group when newcl was empty (no more session in the group). But persistent session groups are usually used to store persistent information about users. It makes no sense cleaning this information when user closes all their sessions. I remove this. -- Vincent *) Ocsipersist.replace_if_exists grouptable sg (max, newcl)) (function Not_found -> Lwt.return_unit | e -> Lwt.fail e) | None -> Lwt.return_unit let up sess_id grp = match grp with | None -> Lwt.return_unit | Some sg -> let sg = Eliom_common.string_of_perssessgrp sg in Lwt.catch (fun () -> !!grouptable >>= fun grouptable -> Ocsipersist.find grouptable sg >>= fun (max, cl) -> let newcl = List.remove_first_if_any sess_id cl in Ocsipersist.replace_if_exists grouptable sg (max, sess_id :: newcl)) (function Not_found -> Lwt.return_unit | e -> Lwt.fail e) let move sitedata ?set_max max sess_id grp1 grp2 = if set_max <> None || grp1 <> grp2 then remove sitedata sess_id grp1 >>= fun () -> add ?set_max max sess_id grp2 else Lwt.return_nil let nb_of_groups () = !!grouptable >>= Ocsipersist.length end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>