frp/src/utils/vhost/router.go

97 lines
1.6 KiB
Go
Raw Normal View History

package vhost
import (
"sort"
"strings"
"sync"
)
type VhostRouters struct {
RouterByDomain map[string][]*VhostRouter
mutex sync.RWMutex
}
type VhostRouter struct {
domain string
location string
listener *Listener
}
func NewVhostRouters() *VhostRouters {
return &VhostRouters{
RouterByDomain: make(map[string][]*VhostRouter),
}
}
2016-12-25 01:53:23 +08:00
func (r *VhostRouters) Add(domain, location string, l *Listener) {
r.mutex.Lock()
defer r.mutex.Unlock()
vrs, found := r.RouterByDomain[domain]
if !found {
vrs = make([]*VhostRouter, 0)
}
2016-12-25 01:53:23 +08:00
vr := &VhostRouter{
domain: domain,
location: location,
listener: l,
}
2016-12-25 01:53:23 +08:00
vrs = append(vrs, vr)
sort.Reverse(ByLocation(vrs))
r.RouterByDomain[domain] = vrs
}
2016-12-25 01:53:23 +08:00
func (r *VhostRouters) Del(l *Listener) {
r.mutex.Lock()
defer r.mutex.Unlock()
2016-12-25 01:53:23 +08:00
vrs, found := r.RouterByDomain[l.name]
if !found {
return
}
for i, vr := range vrs {
if vr.listener == l {
if len(vrs) > i+1 {
2016-12-25 01:53:23 +08:00
r.RouterByDomain[l.name] = append(vrs[:i], vrs[i+1:]...)
} else {
2016-12-25 01:53:23 +08:00
r.RouterByDomain[l.name] = vrs[:i]
}
}
}
}
2016-12-25 01:53:23 +08:00
func (r *VhostRouters) Get(host, path string) (vr *VhostRouter, exist bool) {
r.mutex.RLock()
defer r.mutex.RUnlock()
2016-12-25 01:53:23 +08:00
vrs, found := r.RouterByDomain[host]
if !found {
return
}
//can't support load balance,will to do
for _, vr = range vrs {
2016-12-25 01:53:23 +08:00
if strings.HasPrefix(path, vr.location) {
return vr, true
}
}
return
}
2016-12-25 01:53:23 +08:00
//sort by location
type ByLocation []*VhostRouter
func (a ByLocation) Len() int {
return len(a)
}
func (a ByLocation) Swap(i, j int) {
a[i], a[j] = a[j], a[i]
}
func (a ByLocation) Less(i, j int) bool {
return strings.Compare(a[i].location, a[j].location) < 0
}