syncer/config/config.go (50 lines of code) (raw):

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package config import ( "fmt" "path/filepath" "github.com/go-chassis/go-archaius" "github.com/apache/servicecomb-service-center/pkg/log" "github.com/apache/servicecomb-service-center/pkg/util" ) var config Config type Config struct { Sync *Sync `yaml:"sync"` } type Sync struct { EnableOnStart bool `yaml:"enableOnStart"` // When RbacEnabled is true, syncer's API requires the rbac token, // and service-center also provides the rbac token to communicate with peer. // At the same time, service-center rbac must be enabled. RbacEnabled bool `yaml:"rbacEnabled"` Peers []*Peer `yaml:"peers"` } type Peer struct { Name string `yaml:"name"` Kind string `yaml:"kind"` Endpoints []string `yaml:"endpoints"` Mode []string `yaml:"mode"` // The token to communicate with peer, this takes effect only when RbacEnabled is true Token string `yaml:"token"` } func Init() error { err := archaius.AddFile(filepath.Join(util.GetAppRoot(), "conf", "syncer.yaml")) if err != nil { log.Warn(fmt.Sprintf("can not add syncer config file source, error: %s", err)) return err } err = Reload() if err != nil { log.Fatal("reload syncer configs failed", err) return err } return nil } // Reload all configurations func Reload() error { err := archaius.UnmarshalConfig(&config) if err != nil { return err } return nil } // GetConfig return the syncer full configurations func GetConfig() Config { return config } // SetConfig for UT func SetConfig(c Config) { config = c }