-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServerAbstract.php
156 lines (140 loc) · 5.01 KB
/
ServerAbstract.php
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
<?php declare(strict_types=1);
/**
* @package Localzet Server
* @link https://github.com/localzet/Server
*
* @author Ivan Zorin <creator@localzet.com>
* @copyright Copyright (c) 2018-2025 Localzet Group
* @license https://www.gnu.org/licenses/agpl-3.0 GNU Affero General Public License v3.0
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* For any questions, please contact <creator@localzet.com>
*/
namespace localzet;
use localzet\Server\Connection\ConnectionInterface;
use localzet\Server\Connection\TcpConnection;
use localzet\Server\Protocols\Http\Request;
use localzet\Server\Protocols\Http\Response;
/**
* Абстрактный класс ServerAbstract, определяющий основные методы сервера.
*/
abstract class ServerAbstract
{
/**
* Метод, вызываемый при старте сервера.
*
* @param Server $server Экземпляр сервера.
*/
public function onServerStart(Server &$server): void
{
}
/**
* Метод, вызываемый при остановке сервера.
*
* @param Server $server Экземпляр сервера.
*/
public function onServerStop(Server &$server): void
{
}
/**
* Метод, вызываемый при перезагрузке сервера.
*
* @param Server $server Экземпляр сервера.
*/
public function onServerReload(Server &$server): void
{
}
/**
* Метод, вызываемый при выходе сервера.
*
* @param Server $server Экземпляр сервера.
* @param int $signal Сигнал выхода.
* @param int $pid PID процесса.
*/
public function onServerExit(Server $server, int $signal, int $pid): void
{
}
/**
* Метод, вызываемый при перезагрузке мастера.
*/
public function onMasterReload(): void
{
}
/**
* Метод, вызываемый при остановке мастера.
*/
public function onMasterStop(): void
{
}
/**
* Метод, вызываемый при подключении.
*
* @param ConnectionInterface $connection Интерфейс соединения.
*/
public function onConnect(ConnectionInterface &$connection): void
{
}
/**
* Метод, вызываемый при подключении WebSocket.
*
* @param TcpConnection $tcpConnection TCP соединение.
* @param Request $request HTTP запрос.
* @return void|Response
*/
public function onWebSocketConnect(TcpConnection &$tcpConnection, Request $request)
{
}
/**
* Метод, вызываемый при получении сообщения.
*
* @param ConnectionInterface $connection Интерфейс соединения.
* @param mixed $request Запрос.
*/
public abstract function onMessage(ConnectionInterface &$connection, mixed $request): void;
/**
* Метод, вызываемый при закрытии соединения.
*
* @param ConnectionInterface $connection Интерфейс соединения.
*/
public function onClose(ConnectionInterface &$connection): void
{
}
/**
* Метод, вызываемый при ошибке.
*
* @param ConnectionInterface $connection Интерфейс соединения.
* @param int $code Код ошибки.
* @param string $reason Причина ошибки.
*/
public function onError(ConnectionInterface &$connection, int $code, string $reason): void
{
}
/**
* Метод, вызываемый при заполнении буфера.
*
* @param ConnectionInterface $connection Интерфейс соединения.
*/
public function onBufferFull(ConnectionInterface &$connection): void
{
}
/**
* Метод, вызываемый при освобождении буфера.
*
* @param ConnectionInterface $connection Интерфейс соединения.
*/
public function onBufferDrain(ConnectionInterface &$connection): void
{
}
}