mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.6 KiB
66 lines
1.6 KiB
package serial |
|
|
|
import ( |
|
"context" |
|
"io" |
|
|
|
"github.com/xtls/xray-core/common/errors" |
|
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 []*core.ConfigSource) (string, error) { |
|
c, err := mergeConfigs(files) |
|
if err != nil { |
|
return "", err |
|
} |
|
|
|
if j, ok := creflect.MarshalToJson(c, true); ok { |
|
return j, nil |
|
} |
|
return "", errors.New("marshal to json failed.").AtError() |
|
} |
|
|
|
func mergeConfigs(files []*core.ConfigSource) (*conf.Config, error) { |
|
cf := &conf.Config{} |
|
for i, file := range files { |
|
errors.LogInfo(context.Background(), "Reading config: ", file) |
|
r, err := confloader.LoadConfig(file.Name) |
|
if err != nil { |
|
return nil, errors.New("failed to read config: ", file).Base(err) |
|
} |
|
c, err := ReaderDecoderByFormat[file.Format](r) |
|
if err != nil { |
|
return nil, errors.New("failed to decode config: ", file).Base(err) |
|
} |
|
if i == 0 { |
|
*cf = *c |
|
continue |
|
} |
|
cf.Override(c, file.Name) |
|
} |
|
return cf, nil |
|
} |
|
|
|
func BuildConfig(files []*core.ConfigSource) (*core.Config, error) { |
|
config, err := mergeConfigs(files) |
|
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 |
|
}
|
|
|