mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
44bb83033f
* Add MarshalToJson(). * Add cmd arg -dump for printing out merged multiple json configs. --------- Co-authored-by: nobody <nobody@nowhere.mars>
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
package serial
|
|
|
|
import (
|
|
"io"
|
|
|
|
creflect "github.com/xtls/xray-core/common/reflect"
|
|
"github.com/xtls/xray-core/core"
|
|
"github.com/xtls/xray-core/infra/conf"
|
|
"github.com/xtls/xray-core/main/confloader"
|
|
)
|
|
|
|
func MergeConfigFromFiles(files []string, formats []string) (string, error) {
|
|
c, err := mergeConfigs(files, formats)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
if j, ok := creflect.MarshalToJson(c); ok {
|
|
return j, nil
|
|
}
|
|
return "", newError("marshal to json failed.").AtError()
|
|
}
|
|
|
|
func mergeConfigs(files []string, formats []string) (*conf.Config, error) {
|
|
cf := &conf.Config{}
|
|
for i, file := range files {
|
|
newError("Reading config: ", file).AtInfo().WriteToLog()
|
|
r, err := confloader.LoadConfig(file)
|
|
if err != nil {
|
|
return nil, newError("failed to read config: ", file).Base(err)
|
|
}
|
|
c, err := ReaderDecoderByFormat[formats[i]](r)
|
|
if err != nil {
|
|
return nil, newError("failed to decode config: ", file).Base(err)
|
|
}
|
|
if i == 0 {
|
|
*cf = *c
|
|
continue
|
|
}
|
|
cf.Override(c, file)
|
|
}
|
|
return cf, nil
|
|
}
|
|
|
|
func BuildConfig(files []string, formats []string) (*core.Config, error) {
|
|
config, err := mergeConfigs(files, formats)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return config.Build()
|
|
}
|
|
|
|
type readerDecoder func(io.Reader) (*conf.Config, error)
|
|
|
|
var ReaderDecoderByFormat = make(map[string]readerDecoder)
|
|
|
|
func init() {
|
|
ReaderDecoderByFormat["json"] = DecodeJSONConfig
|
|
ReaderDecoderByFormat["yaml"] = DecodeYAMLConfig
|
|
ReaderDecoderByFormat["toml"] = DecodeTOMLConfig
|
|
|
|
core.ConfigBuilderForFiles = BuildConfig
|
|
core.ConfigMergedFormFiles = MergeConfigFromFiles
|
|
}
|