PocketMine-MP 5.15.1 git-5ef247620a7c6301a849b54e5ef1009217729fc8
NetworkSessionManager.php
1<?php
2
3/*
4 *
5 * ____ _ _ __ __ _ __ __ ____
6 * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
7 * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
8 * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
9 * |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * @author PocketMine Team
17 * @link http://www.pocketmine.net/
18 *
19 *
20 */
21
22declare(strict_types=1);
23
24namespace pocketmine\network;
25
28use function count;
29use function spl_object_id;
30
32
34 private array $sessions = [];
35
37 private array $pendingLoginSessions = [];
38
42 public function add(NetworkSession $session) : void{
43 $idx = spl_object_id($session);
44 $this->sessions[$idx] = $session;
45 $this->pendingLoginSessions[$idx] = $session;
46 }
47
52 public function markLoginReceived(NetworkSession $session) : void{
53 $idx = spl_object_id($session);
54 unset($this->pendingLoginSessions[$idx]);
55 }
56
61 public function remove(NetworkSession $session) : void{
62 $idx = spl_object_id($session);
63 unset($this->sessions[$idx]);
64 unset($this->pendingLoginSessions[$idx]);
65 }
66
70 public function getSessionCount() : int{
71 return count($this->sessions);
72 }
73
78 public function getValidSessionCount() : int{
79 return count($this->sessions) - count($this->pendingLoginSessions);
80 }
81
83 public function getSessions() : array{ return $this->sessions; }
84
88 public function tick() : void{
89 foreach($this->sessions as $k => $session){
90 $session->tick();
91 if(!$session->isConnected()){
92 unset($this->sessions[$k]);
93 }
94 }
95 }
96
103 public function close(Translatable|string $reason = "", Translatable|string|null $disconnectScreenMessage = null) : void{
104 foreach($this->sessions as $session){
105 $session->disconnect($reason, $disconnectScreenMessage);
106 }
107 $this->sessions = [];
108 }
109}
close(Translatable|string $reason="", Translatable|string|null $disconnectScreenMessage=null)