Skip to content
Snippets Groups Projects
service_revision_customizer.go 4.18 KiB
Newer Older
flycash's avatar
flycash committed
/*
 * 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 event

import (
	"fmt"
	"hash/crc32"
	"sort"
flycash's avatar
flycash committed
)
flycash's avatar
flycash committed

flycash's avatar
flycash committed
import (
flycash's avatar
flycash committed
	"github.com/apache/dubbo-go/common"
	"github.com/apache/dubbo-go/common/constant"
	"github.com/apache/dubbo-go/common/extension"
	"github.com/apache/dubbo-go/common/logger"
flycash's avatar
flycash committed
	"github.com/apache/dubbo-go/metadata/service"
flycash's avatar
flycash committed
	"github.com/apache/dubbo-go/registry"
)

const defaultRevision = "N/A"

func init() {
	extension.AddCustomizers(&exportedServicesRevisionMetadataCustomizer{})
	extension.AddCustomizers(&subscribedServicesRevisionMetadataCustomizer{})
}

type exportedServicesRevisionMetadataCustomizer struct {
}

// GetPriority will return 1 so that it will be invoked in front of user defining Customizer
func (e *exportedServicesRevisionMetadataCustomizer) GetPriority() int {
	return 1
}

flycash's avatar
flycash committed
// Customize calculate the revision for exported urls and then put it into instance metadata
flycash's avatar
flycash committed
func (e *exportedServicesRevisionMetadataCustomizer) Customize(instance registry.ServiceInstance) {
flycash's avatar
flycash committed
	ms, err := getMetadataService()
flycash's avatar
flycash committed
	if err != nil {
		logger.Errorf("could not get metadata service", err)
		return
	}

	urls, err := ms.GetExportedURLs(constant.ANY_VALUE, constant.ANY_VALUE, constant.ANY_VALUE, constant.ANY_VALUE)

	if err != nil {
		logger.Errorf("could not find the exported url", err)
	}

	revision := resolveRevision(urls)
	if len(revision) == 0 {
		revision = defaultRevision
	}
	instance.GetMetadata()[constant.EXPORTED_SERVICES_REVISION_PROPERTY_NAME] = revision
}

type subscribedServicesRevisionMetadataCustomizer struct {
}

// GetPriority will return 2 so that it will be invoked in front of user defining Customizer
func (e *subscribedServicesRevisionMetadataCustomizer) GetPriority() int {
	return 2
}

flycash's avatar
flycash committed
// Customize calculate the revision for subscribed urls and then put it into instance metadata
flycash's avatar
flycash committed
func (e *subscribedServicesRevisionMetadataCustomizer) Customize(instance registry.ServiceInstance) {
flycash's avatar
flycash committed
	ms, err := getMetadataService()
flycash's avatar
flycash committed
	if err != nil {
		logger.Errorf("could not get metadata service", err)
		return
	}

	urls, err := ms.GetSubscribedURLs()

	if err != nil {
		logger.Errorf("could not find the subscribed url", err)
	}

flycash's avatar
flycash committed
	revision := resolveRevision(service.ConvertURLArrToIntfArr(urls))
flycash's avatar
flycash committed
	if len(revision) == 0 {
		revision = defaultRevision
	}
	instance.GetMetadata()[constant.SUBSCRIBED_SERVICES_REVISION_PROPERTY_NAME] = revision
}

// resolveRevision is different from Dubbo because golang doesn't support overload
// so that we could use interface + method name as identifier and ignore the method params
// per my understanding, it's enough because Dubbo actually ignore the url params.
// please refer org.apache.dubbo.common.URL#toParameterString(java.lang.String...)
flycash's avatar
flycash committed
func resolveRevision(urls []interface{}) string {
flycash's avatar
flycash committed
	if len(urls) == 0 {
		return ""
	}
	candidates := make([]string, 0, len(urls))

flycash's avatar
flycash committed
	for _, ui := range urls {
flycash's avatar
flycash committed
		u, err := common.NewURL(ui.(string))
		if err != nil {
			logger.Errorf("could not parse the string to URL structure")
			continue
		}
flycash's avatar
flycash committed
		sk := u.GetParam(constant.INTERFACE_KEY, "")
flycash's avatar
flycash committed

		if len(u.Methods) == 0 {
			candidates = append(candidates, sk)
		} else {
			for _, m := range u.Methods {
				// methods are part of candidates
				candidates = append(candidates, sk+constant.KEY_SEPARATOR+m)
			}
flycash's avatar
flycash committed
		}
flycash's avatar
flycash committed

flycash's avatar
flycash committed
		// append url params if we need it
	}
	sort.Strings(candidates)
flycash's avatar
flycash committed

	// it's nearly impossible to be overflow
	res := uint64(0)
	for _, c := range candidates {
		res += uint64(crc32.ChecksumIEEE([]byte(c)))
	}
	return fmt.Sprint(res)
}