You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
srs/trunk
Winlin 0df81c3b34 Support HTTP-API for fetching reload result. v5.0.176 (#3779)
During a Reload, several stages will be passed through:
1. Parsing new configurations: Parse.
2. Transforming configurations: Transform.
3. Applying configurations: Apply.

Previously, any error at any stage would result in a direct exit, making
the system completely dependent on configuration checks:

```bash
./objs/srs -c conf/srs.conf -t
echo $?
```

Optimized to: If an error occurs before applying the configuration, it
can be ignored. If an error occurs during the application of the
configuration, some of the configuration may have already taken effect,
leading to unpredictable behavior, so SRS will exit directly.

Added a new HTTP API to query the result of the reload.

```nginx
http_api {
    enabled         on;
    raw_api {
        enabled on;
        allow_reload on;
    }
}
```

```bash
curl http://localhost:1985/api/v1/raw?rpc=reload-fetch
```

```json
{
  "code": 0,
  "data": {
    "err": 0,
    "msg": "Success",
    "state": 0,
    "rid": "0s6y0n9"
  }
}

{
  "code": 0,
  "data": {
    "err": 1023,
    "msg": "code=1023(ConfigInvalid) : parse file : parse buffer containers/conf/srs.release-local.conf : root parse : parse dir : parse include buffer containers/data/config/srs.vhost.conf : read token, line=0, state=0 : line 3: unexpected end of file, expecting ; or \"}\"",
    "state": 1,
    "rid": "0g4z471"
  }
}
```

This way, you can know if the last reload of the system was successful.

---------

Co-authored-by: Haibo Chen <495810242@qq.com>
2 years ago
..
3rdparty Upgrade jquery from 1.10.2 to 1.12.2 (#3571) 2 years ago
auto Bugfix: Eliminate the redundant declaration of the _srs_rtc_manager variable. v5.0.169 (#3699) 2 years ago
conf Support HTTP-API for fetching reload result. v5.0.176 (#3779) 2 years ago
doc Support HTTP-API for fetching reload result. v5.0.176 (#3779) 2 years ago
etc/init.d Squash: Fix bugs 3 years ago
gdb ST: Support show coroutines. 4 years ago
ide/srs_clion Disable CLS and APM by default. v5.0.101 2 years ago
modules Moduels: Refine the description 4 years ago
packaging Windows: Refine cygwin pipeline (#3260) 2 years ago
research Fix issue of srs-player failing to play HTTP-FLV. v5.0.165 2 years ago
scripts Package script support extra options. v5.0.102 2 years ago
src Support HTTP-API for fetching reload result. v5.0.176 (#3779) 2 years ago
usr/lib/systemd/system Squash: Support RPM. Fix bugs. 3 years ago
.gitignore For #2136: API: Cleanup no active streams for statistics. v5.0.42 3 years ago
AUTHORS.md Update new authors. 2 years ago
AUTHORS.txt Update AUTHORS 4 years ago
Dockerfile.builds Disable CLS and APM by default. v5.0.101 2 years ago
Dockerfile.cov GB28181: Enable regression test for gb28181. v5.0.122 2 years ago
Dockerfile.pkg GB28181: Enable GB for CentOS 7 package. v5.0.103 2 years ago
Dockerfile.test GB28181: Enable regression test for gb28181. v5.0.122 2 years ago
configure Support include empty config file. v5.0.173 (#3768) 2 years ago