| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package conf
- import (
- "encoding/json"
- "v2ray.com/core/common"
- "v2ray.com/core/common/errors"
- "v2ray.com/core/app/log"
- )
- var (
- ErrUnknownConfigID = errors.New("Unknown config ID.")
- )
- type ConfigCreator func() interface{}
- type ConfigCreatorCache map[string]ConfigCreator
- func (v ConfigCreatorCache) RegisterCreator(id string, creator ConfigCreator) error {
- if _, found := v[id]; found {
- return common.ErrDuplicatedName
- }
- v[id] = creator
- return nil
- }
- func (v ConfigCreatorCache) CreateConfig(id string) (interface{}, error) {
- creator, found := v[id]
- if !found {
- return nil, ErrUnknownConfigID
- }
- return creator(), nil
- }
- type JSONConfigLoader struct {
- cache ConfigCreatorCache
- idKey string
- configKey string
- }
- func NewJSONConfigLoader(cache ConfigCreatorCache, idKey string, configKey string) *JSONConfigLoader {
- return &JSONConfigLoader{
- idKey: idKey,
- configKey: configKey,
- cache: cache,
- }
- }
- func (v *JSONConfigLoader) LoadWithID(raw []byte, id string) (interface{}, error) {
- creator, found := v.cache[id]
- if !found {
- return nil, ErrUnknownConfigID
- }
- config := creator()
- if err := json.Unmarshal(raw, config); err != nil {
- return nil, err
- }
- return config, nil
- }
- func (v *JSONConfigLoader) Load(raw []byte) (interface{}, string, error) {
- var obj map[string]json.RawMessage
- if err := json.Unmarshal(raw, &obj); err != nil {
- return nil, "", err
- }
- rawID, found := obj[v.idKey]
- if !found {
- log.Error(v.idKey, " not found in JSON content.")
- return nil, "", common.ErrObjectNotFound
- }
- var id string
- if err := json.Unmarshal(rawID, &id); err != nil {
- return nil, "", err
- }
- rawConfig := json.RawMessage(raw)
- if len(v.configKey) > 0 {
- configValue, found := obj[v.configKey]
- if !found {
- log.Error(v.configKey, " not found in JSON content.")
- return nil, "", common.ErrObjectNotFound
- }
- rawConfig = configValue
- }
- config, err := v.LoadWithID([]byte(rawConfig), id)
- if err != nil {
- return nil, id, err
- }
- return config, id, nil
- }
|