blob: 6793e26f1ac834c128e20641e55ba0e957a14ffc [file] [log] [blame]
/*
* 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 (
"sync"
)
import (
hessian "github.com/apache/dubbo-go-hessian2"
)
import (
"dubbo.apache.org/dubbo-go/v3/common"
"dubbo.apache.org/dubbo-go/v3/common/logger"
)
var (
startOnce sync.Once
)
func GetInstance(opts ...RootConfigOpt) *RootConfig {
registerPOJO()
rc := &RootConfig{
ConfigCenter: GetConfigCenterInstance(),
ServiceDiscoveries: make(map[string]*ServiceDiscoveryConfig),
MetadataReportConfig: &MetadataReportConfig{},
Application: GetApplicationInstance(),
Registries: make(map[string]*RegistryConfig),
Protocols: GetProtocolsInstance(),
Provider: GetProviderInstance(),
Consumer: GetConsumerInstance(),
MetricConfig: &MetricConfig{},
Logger: GetLoggerConfigInstance(),
}
for _, opt := range opts {
opt(rc)
}
return rc
}
func registerPOJO() {
hessian.RegisterPOJO(&common.MetadataInfo{})
hessian.RegisterPOJO(&common.ServiceInfo{})
hessian.RegisterPOJO(&common.URL{})
}
func (rc *RootConfig) Init() error {
if err := rc.Logger.Init(); err != nil {
return err
}
if err := rc.ConfigCenter.Init(rc); err != nil {
logger.Warnf("config center doesn't start. error is %s", err)
}
if err := rc.Application.Init(); err != nil {
return err
}
if err := initProtocolsConfig(rc); err != nil {
return err
}
if err := initRegistryConfig(rc); err != nil {
return err
}
if err := initServiceDiscoveryConfig(rc); err != nil {
return err
}
if err := rc.MetadataReportConfig.Init(rc); err != nil {
return err
}
if err := initMetricConfig(rc); err != nil {
return err
}
if err := initRouterConfig(rc); err != nil {
return err
}
// provider、consumer must last init
if err := rc.Provider.Init(rc); err != nil {
return err
}
if err := rc.Consumer.Init(rc); err != nil {
return err
}
rc.Start()
return nil
}
func (rc *RootConfig) Start() {
startOnce.Do(func() {
rc.Provider.Load()
rc.Consumer.Load()
registerServiceInstance()
})
}