mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
1.9 KiB
89 lines
1.9 KiB
// Copyright 2017 fatedier, fatedier@gmail.com |
|
// |
|
// Licensed 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 server |
|
|
|
import ( |
|
"fmt" |
|
"sync" |
|
) |
|
|
|
type ControlManager struct { |
|
// controls indexed by run id |
|
ctlsByRunId map[string]*Control |
|
|
|
mu sync.RWMutex |
|
} |
|
|
|
func NewControlManager() *ControlManager { |
|
return &ControlManager{ |
|
ctlsByRunId: make(map[string]*Control), |
|
} |
|
} |
|
|
|
func (cm *ControlManager) Add(runId string, ctl *Control) (oldCtl *Control) { |
|
cm.mu.Lock() |
|
defer cm.mu.Unlock() |
|
|
|
oldCtl, ok := cm.ctlsByRunId[runId] |
|
if ok { |
|
oldCtl.Replaced(ctl) |
|
} |
|
cm.ctlsByRunId[runId] = ctl |
|
return |
|
} |
|
|
|
func (cm *ControlManager) GetById(runId string) (ctl *Control, ok bool) { |
|
cm.mu.RLock() |
|
defer cm.mu.RUnlock() |
|
ctl, ok = cm.ctlsByRunId[runId] |
|
return |
|
} |
|
|
|
type ProxyManager struct { |
|
// proxies indexed by proxy name |
|
pxys map[string]Proxy |
|
|
|
mu sync.RWMutex |
|
} |
|
|
|
func NewProxyManager() *ProxyManager { |
|
return &ProxyManager{ |
|
pxys: make(map[string]Proxy), |
|
} |
|
} |
|
|
|
func (pm *ProxyManager) Add(name string, pxy Proxy) error { |
|
pm.mu.Lock() |
|
defer pm.mu.Unlock() |
|
if _, ok := pm.pxys[name]; ok { |
|
return fmt.Errorf("proxy name [%s] is already in use", name) |
|
} |
|
|
|
pm.pxys[name] = pxy |
|
return nil |
|
} |
|
|
|
func (pm *ProxyManager) Del(name string) { |
|
pm.mu.Lock() |
|
defer pm.mu.Unlock() |
|
delete(pm.pxys, name) |
|
} |
|
|
|
func (pm *ProxyManager) GetByName(name string) (pxy Proxy, ok bool) { |
|
pm.mu.RLock() |
|
defer pm.mu.RUnlock() |
|
pxy, ok = pm.pxys[name] |
|
return |
|
}
|
|
|