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


Golang Reader.ReadLine方法代码示例

本文整理汇总了Golang中net/textproto.Reader.ReadLine方法的典型用法代码示例。如果您正苦于以下问题:Golang Reader.ReadLine方法的具体用法?Golang Reader.ReadLine怎么用?Golang Reader.ReadLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在net/textproto.Reader的用法示例。


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

示例1: extractCommand

func extractCommand(reader *textproto.Reader) (command, error) {
	line, err := reader.ReadLine()
	if err != nil {
		return getStats, err
	}

	for index, commandName := range commandNames {
		if commandName == line {
			return command(index), nil
		}
	}
	return getStats, errInvalidCommand
}
开发者ID:kruszczynski,项目名称:studies,代码行数:13,代码来源:server.go

示例2: reader

func (s *Service) reader(r *textproto.Reader) {
	for {
		str, e := r.ReadLine()
		if e != nil {
			break
		}
		req := rxreq.FindStringSubmatch(str)
		if req == nil {
			break
		}
		if req[1] == "QUIT" {
			break
		}
		switch req[1] {
		case "PULL":
			if s.Debug {
				fmt.Println("got pull", req[2])
			}
			k, e := base64.StdEncoding.DecodeString(req[2])
			if e == nil {
				s.rpull <- k
			}
		case "PUSH":
			_, e = io.ReadFull(r.R, s.rblock)
			if e == nil {
				h := sha512.New()
				h.Write(s.rblock)
				hash := h.Sum([]byte{})
				if s.acc.Accept(hash) {
					if s.Debug {
						fmt.Println("got push", base64.StdEncoding.EncodeToString(hash), "accept")
					}
					s.bck.Store(hash, s.rblock)
				} else {
					if s.Debug {
						fmt.Println("got push", base64.StdEncoding.EncodeToString(hash), "refuse")
					}
				}
			}
		}
	}
}
开发者ID:postfix,项目名称:libblockify,代码行数:42,代码来源:peer.go


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