2019-02-21 09:52:53 +01:00
|
|
|
// Copyright Project Harbor Authors
|
|
|
|
//
|
|
|
|
// 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 ng ...
|
|
|
|
// TODO rename the package name after removing ng
|
|
|
|
package ng
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2019-02-28 09:43:07 +01:00
|
|
|
"github.com/goharbor/harbor/src/replication/ng/execution"
|
|
|
|
|
|
|
|
"github.com/goharbor/harbor/src/replication/ng/policy"
|
|
|
|
|
2019-02-21 09:52:53 +01:00
|
|
|
"github.com/goharbor/harbor/src/replication/ng/scheduler"
|
|
|
|
|
|
|
|
"github.com/goharbor/harbor/src/replication/ng/flow"
|
|
|
|
"github.com/goharbor/harbor/src/replication/ng/operation"
|
|
|
|
"github.com/goharbor/harbor/src/replication/ng/registry"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-02-28 09:43:07 +01:00
|
|
|
// PolicyMgr is a global policy manager
|
|
|
|
PolicyMgr policy.Manager
|
2019-02-21 09:52:53 +01:00
|
|
|
// RegistryMgr is a global registry manager
|
|
|
|
RegistryMgr registry.Manager
|
|
|
|
// OperationCtl is a global operation controller
|
|
|
|
OperationCtl operation.Controller
|
|
|
|
)
|
|
|
|
|
|
|
|
// Init the global variables
|
|
|
|
func Init() error {
|
2019-02-25 08:41:54 +01:00
|
|
|
// Init registry manager
|
|
|
|
RegistryMgr = registry.NewDefaultManager()
|
2019-02-28 09:43:07 +01:00
|
|
|
// TODO init PolicyMgr
|
2019-02-21 09:52:53 +01:00
|
|
|
|
|
|
|
// TODO init ExecutionMgr
|
2019-02-28 09:43:07 +01:00
|
|
|
var executionMgr execution.Manager
|
2019-02-21 09:52:53 +01:00
|
|
|
// TODO init scheduler
|
|
|
|
var scheduler scheduler.Scheduler
|
|
|
|
|
2019-02-28 09:43:07 +01:00
|
|
|
flowCtl, err := flow.NewController(RegistryMgr, executionMgr, scheduler)
|
2019-02-21 09:52:53 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to create the flow controller: %v", err)
|
|
|
|
}
|
2019-02-28 09:43:07 +01:00
|
|
|
OperationCtl = operation.NewController(flowCtl, executionMgr)
|
2019-02-21 09:52:53 +01:00
|
|
|
return nil
|
|
|
|
}
|