frp/client/service.go

76 lines
1.7 KiB
Go
Raw Normal View History

2017-03-09 02:03:47 +08:00
// Copyright 2017 fatedier, fatedier@gmail.com
2016-12-19 01:22:21 +08:00
//
// 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.
2017-03-09 02:03:47 +08:00
package client
2016-12-19 01:22:21 +08:00
import (
2018-04-10 17:46:49 +08:00
"github.com/fatedier/frp/g"
"github.com/fatedier/frp/models/config"
"github.com/fatedier/frp/utils/log"
)
2016-12-19 01:22:21 +08:00
2017-03-09 02:03:47 +08:00
type Service struct {
// manager control connection with server
ctl *Control
2018-11-26 22:28:48 +08:00
closedCh chan bool
closed bool
2017-03-09 02:03:47 +08:00
}
2017-12-05 01:34:33 +08:00
func NewService(pxyCfgs map[string]config.ProxyConf, visitorCfgs map[string]config.ProxyConf) (svr *Service) {
2017-03-09 02:03:47 +08:00
svr = &Service{
2018-11-26 22:28:48 +08:00
closedCh: make(chan bool),
closed: false,
2016-12-19 01:22:21 +08:00
}
2017-12-05 01:34:33 +08:00
ctl := NewControl(svr, pxyCfgs, visitorCfgs)
2017-03-09 02:03:47 +08:00
svr.ctl = ctl
2016-12-19 01:22:21 +08:00
return
}
2017-03-09 02:03:47 +08:00
2018-05-14 14:37:48 +08:00
func (svr *Service) Run(cmd bool) error {
2017-03-09 02:03:47 +08:00
err := svr.ctl.Run()
if err != nil {
return err
}
2018-04-10 17:46:49 +08:00
if g.GlbClientCfg.AdminPort != 0 {
err = svr.RunAdminServer(g.GlbClientCfg.AdminAddr, g.GlbClientCfg.AdminPort)
if err != nil {
log.Warn("run admin server error: %v", err)
}
2018-04-10 17:46:49 +08:00
log.Info("admin server listen on %s:%d", g.GlbClientCfg.AdminAddr, g.GlbClientCfg.AdminPort)
}
2018-05-14 14:37:48 +08:00
if cmd {
2018-11-26 22:28:48 +08:00
svr.closed = <-svr.closedCh
2018-05-16 01:11:43 +08:00
log.Info("svr closed")
2018-05-14 14:37:48 +08:00
} else {
go func() {
2018-11-26 22:28:48 +08:00
svr.closed = <-svr.closedCh
2018-05-16 01:11:43 +08:00
log.Info("svr closed")
2018-05-14 14:37:48 +08:00
}()
}
2017-03-09 02:03:47 +08:00
return nil
}
2017-06-27 01:59:30 +08:00
2018-01-17 01:09:33 +08:00
func (svr *Service) Close() {
svr.ctl.Close()
2018-11-26 22:28:48 +08:00
svr.closedCh <- true
}
func (svr *Service) IsClosed() bool {
return svr.closed
2017-06-27 01:59:30 +08:00
}