当前位置: 首页>>代码示例>>Golang>>正文


Golang raft.Command类代码示例

本文整理汇总了Golang中github.com/goraft/raft.Command的典型用法代码示例。如果您正苦于以下问题:Golang Command类的具体用法?Golang Command怎么用?Golang Command使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Command类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: doOrProxyCommandOnce

func (s *RaftServer) doOrProxyCommandOnce(command raft.Command) (interface{}, error) {

	if s.raftServer.State() == raft.Leader {
		value, err := s.raftServer.Do(command)
		if err != nil {
			log.Error("Cannot run command %#v. %s", command, err)
		}
		return value, err
	} else {
		if leader, ok := s.leaderConnectString(); !ok {
			return nil, errors.New("Couldn't connect to the cluster leader...")
		} else {
			var b bytes.Buffer
			if err := json.NewEncoder(&b).Encode(command); err != nil {
				return nil, err
			}
			resp, err := http.Post(leader+"/process_command/"+command.CommandName(), "application/json", &b)
			if err != nil {
				return nil, err
			}
			defer resp.Body.Close()
			body, err2 := ioutil.ReadAll(resp.Body)

			if resp.StatusCode != 200 {
				return nil, errors.New(strings.TrimSpace(string(body)))
			}

			var js interface{}
			json.Unmarshal(body, &js)
			return js, err2
		}
	}
	return nil, nil
}
开发者ID:qz267,项目名称:influxdb,代码行数:34,代码来源:raft_server.go

示例2: SendCommand

// SendCommand sends command to other peer and receives reply
func (transporter *ZmqTransporter) SendCommand(peer string, command raft.Command) error {
	socket, err := transporter.getSocketFor(peer)
	if err != nil {
		return fmt.Errorf("unable to create socket for peer %s: %v", peer, err)
	}

	buf := new(bytes.Buffer)
	buf.WriteByte(requestCommand)

	encoder := json.NewEncoder(buf)
	encoder.Encode(command.CommandName())
	encoder.Encode(command)

	_, err = socket.SendBytes(buf.Bytes(), 0)
	if err != nil {
		return fmt.Errorf("unable to send command %s to peer %s: %v", command.CommandName(), peer, err)
	}

	response, err := socket.RecvBytes(0)
	if err != nil {
		return fmt.Errorf("unable to receive %s response from peer %s: %v", command.CommandName(), peer, err)
	}

	var result interface{}
	err = json.Unmarshal(response, &result)
	if err != nil {
		return fmt.Errorf("unable to decode %s response from peer %s: %v", command.CommandName(), peer, err)
	}

	if result != nil {
		return fmt.Errorf("error response to command %s from peer %s: %v", command.CommandName(), peer, result)
	}

	return nil
}
开发者ID:pombredanne,项目名称:czar,代码行数:36,代码来源:zeromq.go

示例3: SendCommandToServer

func SendCommandToServer(url string, command raft.Command) (interface{}, error) {
	var b bytes.Buffer
	if err := json.NewEncoder(&b).Encode(command); err != nil {
		return nil, err
	}
	resp, err := http.Post(url+"/process_command/"+command.CommandName(), "application/json", &b)
	if err != nil {
		return nil, err
	}
	defer resp.Body.Close()
	body, err2 := ioutil.ReadAll(resp.Body)

	if resp.StatusCode != 200 {
		return nil, errors.New(strings.TrimSpace(string(body)))
	}

	return body, err2

}
开发者ID:jhermann,项目名称:influxdb,代码行数:19,代码来源:raft_server.go


注:本文中的github.com/goraft/raft.Command类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。