blob: 19898afecb3b01890351f60d020d1e88074602e5 [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 etcd
import (
"context"
"errors"
"github.com/apache/servicecomb-service-center/pkg/log"
"github.com/apache/servicecomb-service-center/syncer/servicecenter"
"github.com/coreos/etcd/embed"
"github.com/coreos/etcd/etcdserver/api/v3client"
)
// Agent warps the embed etcd
type Agent struct {
conf *Config
etcd *embed.Etcd
storage servicecenter.Storage
readyCh chan struct{}
errorCh chan error
}
// NewAgent new etcd agent with config
func NewAgent(conf *Config) *Agent {
return &Agent{
conf: conf,
readyCh: make(chan struct{}),
errorCh: make(chan error),
}
}
// Start etcd agent
func (a *Agent) Start(ctx context.Context) {
etcd, err := embed.StartEtcd(a.conf.Config)
if err == nil {
a.etcd = etcd
select {
// Be returns when the server is readied
case <-etcd.Server.ReadyNotify():
log.Info("start etcd success")
close(a.readyCh)
// Be returns when the server is stopped
case <-etcd.Server.StopNotify():
err = errors.New("unknown error cause start etcd failed, check etcd")
// Returns an error when running goroutine fails in the etcd startup process
case err = <-etcd.Err():
case <-ctx.Done():
err = ctx.Err()
}
}
if err != nil {
log.Error("start etcd failed", err)
a.errorCh <- err
}
}
// Ready Returns a channel that will be closed when etcd is ready
func (a *Agent) Ready() <-chan struct{} {
return a.readyCh
}
// Error Returns a channel that will be transmit an etcd error
func (a *Agent) Error() <-chan error {
return a.errorCh
}
// Storage returns etcd storage
func (a *Agent) Storage() servicecenter.Storage {
if a.storage == nil {
a.storage = NewStorage(v3client.New(a.etcd.Server))
}
return a.storage
}
// Stop etcd agent
func (a *Agent) Stop() {
if a.etcd != nil {
a.etcd.Close()
}
}