Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Issue 1412063008: logdog: Add bundler library. (Closed)

Created:
5 years, 1 month ago by dnj
Modified:
5 years, 1 month ago
CC:
andrew.wang, chromium-reviews, infra-reviews+luci-go_chromium.org, M-A Ruel, tandrii+luci-go_chromium.org, todd
Base URL:
https://github.com/luci/luci-go@logdog-review-streamserver
Target Ref:
refs/heads/master
Project:
luci-go
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Split off `chunk` library. #

Total comments: 5

Patch Set 3 : Enhanced doc.go. #

Total comments: 22

Patch Set 4 : Updated from comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+3350 lines, -5 lines) Patch
A client/internal/logdog/butler/bundler/binaryParser.go View 1 2 3 1 chunk +68 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/binaryParser_test.go View 1 2 3 1 chunk +105 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/builder.go View 1 2 3 1 chunk +122 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/builder_test.go View 1 chunk +265 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/bundler.go View 1 2 3 1 chunk +490 lines, -0 lines 0 comments Download
A + client/internal/logdog/butler/bundler/bundler_test.go View 1 chunk +9 lines, -5 lines 0 comments Download
A client/internal/logdog/butler/bundler/counter.go View 1 chunk +24 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/data.go View 1 1 chunk +127 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/data_test.go View 1 chunk +56 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/datagramParser.go View 1 2 3 1 chunk +126 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/datagramParser_test.go View 1 2 3 1 chunk +193 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/doc.go View 1 2 3 1 chunk +39 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/parser.go View 1 2 3 1 chunk +133 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/parser_test.go View 1 chunk +102 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/sizer.go View 1 chunk +120 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/sizer_test.go View 1 chunk +85 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/stream.go View 1 2 3 1 chunk +329 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/stream_test.go View 1 2 3 1 chunk +454 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/textParser.go View 1 2 3 1 chunk +137 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/textParser_test.go View 1 2 3 1 chunk +217 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/timeoutCond.go View 1 chunk +73 lines, -0 lines 0 comments Download
A client/internal/logdog/butler/bundler/timeoutCond_test.go View 1 chunk +76 lines, -0 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 17 (7 generated)
dnj
PTAL. This replaces the old Bundler (https://codereview.chromium.org/1429993002) CL. This is basically the heart of the ...
5 years, 1 month ago (2015-11-03 19:04:57 UTC) #2
dnj
On 2015/11/03 19:04:57, dnj wrote: > PTAL. This replaces the old Bundler (https://codereview.chromium.org/1429993002) > CL. ...
5 years, 1 month ago (2015-11-03 19:05:52 UTC) #3
dnj
Review order: (butlerproto) https://codereview.chromium.org/1321273002/ (StreamServer) https://codereview.chromium.org/1429993002/ (Bundler) https://codereview.chromium.org/1412063008/ (Output) https://codereview.chromium.org/1211053004/
5 years, 1 month ago (2015-11-03 20:37:45 UTC) #4
estaab
https://codereview.chromium.org/1412063008/diff/20001/client/internal/logdog/butler/bundler/parser_test.go File client/internal/logdog/butler/bundler/parser_test.go (right): https://codereview.chromium.org/1412063008/diff/20001/client/internal/logdog/butler/bundler/parser_test.go#newcode39 client/internal/logdog/butler/bundler/parser_test.go:39: func shouldMatchLogEntry(actual interface{}, expected ...interface{}) string { I see ...
5 years, 1 month ago (2015-11-12 00:51:48 UTC) #5
dnj (Google)
https://codereview.chromium.org/1412063008/diff/20001/client/internal/logdog/butler/bundler/parser_test.go File client/internal/logdog/butler/bundler/parser_test.go (right): https://codereview.chromium.org/1412063008/diff/20001/client/internal/logdog/butler/bundler/parser_test.go#newcode39 client/internal/logdog/butler/bundler/parser_test.go:39: func shouldMatchLogEntry(actual interface{}, expected ...interface{}) string { On 2015/11/12 ...
5 years, 1 month ago (2015-11-12 02:00:41 UTC) #7
estaab
A few superficial comments. I looked over the change and struggled to come up with ...
5 years, 1 month ago (2015-11-13 04:02:47 UTC) #9
iannucci
lgtm https://chromiumcodereview.appspot.com/1412063008/diff/40001/client/internal/logdog/butler/bundler/binaryParser.go File client/internal/logdog/butler/bundler/binaryParser.go (right): https://chromiumcodereview.appspot.com/1412063008/diff/40001/client/internal/logdog/butler/bundler/binaryParser.go#newcode25 client/internal/logdog/butler/bundler/binaryParser.go:25: func (p *binaryParser) nextEntry(c *constraints) (*protocol.LogEntry, error) { ...
5 years, 1 month ago (2015-11-13 07:16:38 UTC) #11
dnj
https://chromiumcodereview.appspot.com/1412063008/diff/40001/client/internal/logdog/butler/bundler/binaryParser.go File client/internal/logdog/butler/bundler/binaryParser.go (right): https://chromiumcodereview.appspot.com/1412063008/diff/40001/client/internal/logdog/butler/bundler/binaryParser.go#newcode25 client/internal/logdog/butler/bundler/binaryParser.go:25: func (p *binaryParser) nextEntry(c *constraints) (*protocol.LogEntry, error) { On ...
5 years, 1 month ago (2015-11-14 00:30:37 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412063008/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412063008/60001
5 years, 1 month ago (2015-11-19 19:16:11 UTC) #16
commit-bot: I haz the power
5 years, 1 month ago (2015-11-19 19:18:28 UTC) #17
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://github.com/luci/luci-go/commit/338c0ee88fa8bf5f0879266889b7153a90067558

Powered by Google App Engine
This is Rietveld 408576698