douben7260 2017-02-18 13:42
浏览 26
已采纳

在io.Reader中添加前缀

I've written a little server which receives a blob of data in the form of an io.Reader, adds a header and streams the result back to the caller.

My implementation isn't particularly efficient as I'm buffering the blob's data in-memory so that I can calculate the blob's length, which needs to form part of the header.

I've seen some examples of io.Pipe() with io.TeeReader but they're more for splitting an io.Reader into two, and writing them away in parallel.

The blobs I'm dealing with are around 100KB, so not huge but if my server gets busy, memory's going to quickly become an issue...

Any ideas?

func addHeader(in io.Reader) (out io.Reader, err error) {
    buf := new(bytes.Buffer)
    if _, err = io.Copy(buf, in); err != nil {
        return
    }

    header := bytes.NewReader([]byte(fmt.Sprintf("header:%d", buf.Len())))

    return io.MultiReader(header, buf), nil
}

I appreciate it's not a good idea to return interfaces from functions but this code isn't destined to become an API, so I'm not too concerned with that bit.

  • 写回答

1条回答 默认 最新

  • douhanshu5517 2017-02-18 15:41
    关注

    In general, the only way to determine the length of data in an io.Reader is to read until EOF. There are ways to determine the length of the data for specific types.

    func addHeader(in io.Reader) (out io.Reader, err error) {
      n := 0
      switch v := in.(type) {
      case *bytes.Buffer:
        n = v.Len()
      case *bytes.Reader:
        n = v.Len()
      case *strings.Reader:
        n = v.Len()
      case io.Seeker:
        cur, err := v.Seek(0, 1)
        if err != nil {
            return nil, err
        }
        end, err := v.Seek(0, 2)
        if err != nil {
            return nil, err
        }
        _, err = v.Seek(cur, 0)
        if err != nil {
            return nil, err
        }
        n = int(end - cur)
      default:
        var buf bytes.Buffer
        if _, err := buf.ReadFrom(in); err != nil {
            return nil, err
        }
        n = buf.Len()
        in = &buf
      }
      header := strings.NewReader(fmt.Sprintf("header:%d", n))
      return io.MultiReader(header, in), nil
    }
    

    This is similar to how the net/http package determines the content length of the request body.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵