This commit is contained in:
2021-05-17 17:30:25 +08:00
parent 1a28e13b34
commit bf30b66153
2 changed files with 16 additions and 3 deletions
+3
View File
@@ -6,6 +6,7 @@ namespace HttpServer\Events;
use Annotation\Annotation; use Annotation\Annotation;
use Exception; use Exception;
use HttpServer\Abstracts\Callback; use HttpServer\Abstracts\Callback;
use Snowflake\Abstracts\Config;
use Snowflake\Event; use Snowflake\Event;
use Snowflake\Exception\ConfigException; use Snowflake\Exception\ConfigException;
use Snowflake\Runtime; use Snowflake\Runtime;
@@ -34,6 +35,8 @@ class OnWorkerStart extends Callback
putenv('state=start'); putenv('state=start');
putenv('worker=' . $worker_id); putenv('worker=' . $worker_id);
Config::sets(sweep(APP_PATH . 'config'));
$annotation = Snowflake::app()->getAnnotation(); $annotation = Snowflake::app()->getAnnotation();
$annotation->setLoader(unserialize(file_get_contents(storage(Runtime::CACHE_NAME)))); $annotation->setLoader(unserialize(file_get_contents(storage(Runtime::CACHE_NAME))));
if ($worker_id >= $server->setting['worker_num']) { if ($worker_id >= $server->setting['worker_num']) {
+13 -3
View File
@@ -6,12 +6,11 @@
* Time: 11:50 * Time: 11:50
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace Snowflake\Abstracts; namespace Snowflake\Abstracts;
use Exception; use Exception;
use Snowflake\Exception\ConfigException; use Snowflake\Exception\ConfigException;
use Snowflake\Abstracts\Component;
use Snowflake\Snowflake; use Snowflake\Snowflake;
@@ -46,6 +45,17 @@ class Config extends Component
return $this->data[$key] = $value; return $this->data[$key] = $value;
} }
/**
* @param array $configs
* @throws Exception
*/
public static function sets(array $configs)
{
$config = Snowflake::app()->getConfig();
$config->data = $configs;
}
/** /**
* @param $key * @param $key
* @param bool $try * @param bool $try
@@ -69,7 +79,7 @@ class Config extends Component
} }
return $default; return $default;
} }
if (!is_array($instance[$value]) ) { if (!is_array($instance[$value])) {
return $instance[$value]; return $instance[$value];
} }
$instance = $instance[$value]; $instance = $instance[$value];