# 上下文-Context
[TOC]
middleware,controller,model,task,在一个消息流程中共享同一个上下文Context。
其中middleware,controller,model可以修改Context,而task只能读取不能修改。
例如MonitorMiddleware
```
public function after_handle($path)
{
$this->context['path'] = $path;
$this->context['execution_time'] = (microtime(true) - $this->start_run_time) * 1000;
if (self::$efficiency_monitor_enable) {
$this->log('Monitor');
}
}
```
这里将context附加了path和execution_time,在after_handle流程前所有对context的操作都会影响到这里的context。
## Controller,Model,Task
通过getContext获取当前的上下文。
## RunStack
Context中包含RunStack字段,这个字段将记录消息流程中所执行的Middleware,Controller,Model,Task的方法。
例如:
```
Array
(
[RunStack] => Array
(
[0] => Server\Middlewares\MonitorMiddleware::before_handle
[1] => Server\Middlewares\NormalHttpMiddleware::before_handle
[2] => Server\Controllers\TestController::setRequestResponse
[3] => Server\Controllers\TestController::http_testContext
[4] => Server\Models\TestModel::contextTest
[5] => Server\Tasks\TestTask::contextTest
[6] => Server\CoreBase\TaskProxy::startTask
[7] => Server\Models\TestModel::destroy
[8] => Server\Controllers\TestController::destroy
[9] => Server\Middlewares\NormalHttpMiddleware::after_handle
[10] => Server\Middlewares\MonitorMiddleware::after_handle
)
[request_id] => 15081258371921825039
[controller_name] => TestController
[method_name] => TestController:http_testContext
[test] => 1
[path] => /TestController/testContext
[execution_time] => 4.1890144348145
)
```
通过这个可以精确判断发生异常和错误的位置,也可以了解到SD框架的工作流程。
- SD3.X简介
- 捐赠SD项目
- VIP服务
- 基础篇
- 搭建环境
- 使用Composer安装/更新SD框架
- 启动命令
- 开发注意事项
- 框架配置
- 配置文件夹
- server.php
- ports.php
- business.php
- mysql.php
- redis.php
- timerTask.php
- log.php
- consul.php
- catCache.php
- client.php
- 自定义配置
- 框架入口
- MVC架构
- 加载器-Loader
- 控制器-Controller
- 模型-Model
- 视图-View
- 同步任务-Task
- 封装器
- Swoole编程指南-EOF协议
- Swoole编程指南-固定包头协议
- 封装器-Pack
- 路由器
- TCP相关
- 绑定UID
- Send系列
- Sub/Pub
- 获取服务器信息
- Http相关
- HttpInput
- HttpOutput
- 默认路由规则
- WebSocket相关
- 使用SSL
- 公共函数
- 进阶篇
- 内核优化
- 封装器路由器原理剖析
- 对象池
- 上下文-Context
- 中间件
- 进程管理
- 创建自定义进程
- 进程间RPC
- 自定义进程如何使用连接池
- 异步连接池
- Redis
- Mysql
- Mqtt
- HttpClient
- Client
- AMQP
- RPC
- 日志工具-GrayLog
- 微服务-Consul
- Consul基础
- 搭建Consul服务器
- SD中Consul配置
- 微服务
- 选举-Leader
- Consul动态配置定时任务
- 熔断与降级
- 集群-Cluster
- 高速缓存-CatCache
- 万物-Actor
- Actor原型
- Actor的创建
- Actor间的通讯
- 消息派发-EventDispatcher
- 延迟队列-TimerCallBack
- 协程
- 订阅与发布
- MQTT简易服务器
- AMQP异步任务调度
- 自定义命令-Console
- 调试工具Channel
- 特别注意事项
- 日常问题总结
- 实践案例
- 物联网自定义协议
- Actor在游戏的应用
- Mongodb以及一些同步扩展的使用
- 自定义进程使用MQTT客户端
- 开发者工具
- SDHelper