blob: 25bcdaea78d3cccf0083bfbaa9636849bd96fb62 [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 main
import (
"math/rand"
"sync"
"time"
)
import (
getty "github.com/apache/dubbo-getty"
)
var (
reqID uint32
src = rand.NewSource(time.Now().UnixNano())
log = getty.GetLogger()
)
func init() {
rand.Seed(time.Now().UnixNano())
}
////////////////////////////////////////////////////////////////////
// echo client
////////////////////////////////////////////////////////////////////
type EchoClient struct {
lock sync.RWMutex
sessions []*clientEchoSession
gettyClient getty.Client
}
func (c *EchoClient) isAvailable() bool {
if c.selectSession() == nil {
return false
}
return true
}
func (c *EchoClient) close() {
c.lock.Lock()
defer c.lock.Unlock()
if c.gettyClient != nil {
c.gettyClient.Close()
c.gettyClient = nil
for _, s := range c.sessions {
log.Infof("close client session{%s, last active:%s, request number:%d}",
s.session.Stat(), s.session.GetActive().String(), s.reqNum)
s.session.Close()
}
c.sessions = c.sessions[:0]
}
}
func (c *EchoClient) selectSession() getty.Session {
// get route server session
c.lock.RLock()
defer c.lock.RUnlock()
count := len(c.sessions)
if count == 0 {
log.Info("client session array is nil...")
return nil
}
return c.sessions[rand.Int31n(int32(count))].session
}
func (c *EchoClient) addSession(session getty.Session) {
log.Debugf("add session{%s}", session.Stat())
if session == nil {
return
}
c.lock.Lock()
c.sessions = append(c.sessions, &clientEchoSession{session: session})
c.lock.Unlock()
}
func (c *EchoClient) removeSession(session getty.Session) {
if session == nil {
return
}
c.lock.Lock()
for i, s := range c.sessions {
if s.session == session {
c.sessions = append(c.sessions[:i], c.sessions[i+1:]...)
log.Debugf("delete session{%s}, its index{%d}", session.Stat(), i)
break
}
}
log.Infof("after remove session{%s}, left session number:%d", session.Stat(), len(c.sessions))
c.lock.Unlock()
}
func (c *EchoClient) updateSession(session getty.Session) {
if session == nil {
return
}
c.lock.Lock()
for i, s := range c.sessions {
if s.session == session {
c.sessions[i].reqNum++
break
}
}
c.lock.Unlock()
}
func (c *EchoClient) getClientEchoSession(session getty.Session) (clientEchoSession, error) {
var (
err error
echoSession clientEchoSession
)
c.lock.Lock()
err = errSessionNotExist
for _, s := range c.sessions {
if s.session == session {
echoSession = *s
err = nil
break
}
}
c.lock.Unlock()
return echoSession, err
}