Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2)

Issue 6589045: uniter: filter type

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 6 months ago by fwereade
Modified:
12 years, 6 months ago
Reviewers:
rog, niemeyer, mp+127142
Visibility:
Public.

Description

uniter: filter type Differs from preview in a couple of notable respects: * has its own tomb, and usual Stop/Wait/Dying methods: it's easier to test, and IMO clearer and more consistent with our existing code. * no longer expects to mess around with the uniter's tomb in any way * thanks to unit.Service, it's much neater to construct It's not yet integrated with the Uniter. Based on other discussions in various places, expect it to evolve in the followup. https://code.launchpad.net/~fwereade/juju-core/uniter-filter-type/+merge/127142 (do not edit description out of merge proposal)

Patch Set 1 #

Patch Set 2 : uniter: filter type #

Total comments: 40

Patch Set 3 : uniter: filter type #

Patch Set 4 : uniter: filter type #

Unified diffs Side-by-side diffs Delta from patch set Stats (+544 lines, -0 lines) Patch
A [revision details] View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M state/unit.go View 1 2 1 chunk +5 lines, -0 lines 0 comments Download
M state/unit_test.go View 1 2 1 chunk +6 lines, -0 lines 0 comments Download
A worker/uniter/filter.go View 1 2 3 1 chunk +257 lines, -0 lines 0 comments Download
A worker/uniter/filter_test.go View 1 2 1 chunk +274 lines, -0 lines 0 comments Download

Messages

Total messages: 8
fwereade
Please take a look.
12 years, 6 months ago (2012-09-30 08:19:06 UTC) #1
fwereade
Please take a look.
12 years, 6 months ago (2012-09-30 19:59:17 UTC) #2
rog
LGTM, very nice. https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go File worker/uniter/filter.go (right): https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go#newcode66 worker/uniter/filter.go:66: var ok bool perhaps it might ...
12 years, 6 months ago (2012-10-01 09:16:24 UTC) #3
niemeyer
Very good, and great splitting of branches too, thank you. A few comments: https://codereview.appspot.com/6589045/diff/3001/state/unit.go File ...
12 years, 6 months ago (2012-10-01 18:55:38 UTC) #4
fwereade
thanks guys, good comments -- responses below. Would appreciate your thoughts. https://codereview.appspot.com/6589045/diff/3001/state/unit.go File state/unit.go (right): ...
12 years, 6 months ago (2012-10-02 06:45:19 UTC) #5
fwereade
Please take a look. https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go File worker/uniter/filter.go (right): https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go#newcode13 worker/uniter/filter.go:13: // ErrDead indicates that a ...
12 years, 6 months ago (2012-10-03 09:13:12 UTC) #6
niemeyer
LGTM. A couple of final comments for your consideration. https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go File worker/uniter/filter.go (right): https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go#newcode125 worker/uniter/filter.go:125: ...
12 years, 6 months ago (2012-10-03 19:31:53 UTC) #7
fwereade
12 years, 6 months ago (2012-10-03 20:45:08 UTC) #8
*** Submitted:

uniter: filter type

Differs from preview in a couple of notable respects:

* has its own tomb, and usual Stop/Wait/Dying methods: it's easier to test,
  and IMO clearer and more consistent with our existing code.
* no longer expects to mess around with the uniter's tomb in any way
* thanks to unit.Service, it's much neater to construct

It's not yet integrated with the Uniter. Based on other discussions in
various places, expect it to evolve in the followup.

R=rog, niemeyer
CC=
https://codereview.appspot.com/6589045

https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go
File worker/uniter/filter.go (right):

https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go#newc...
worker/uniter/filter.go:125: // If we have not previously done so, we discover
the service and
On 2012/10/03 19:31:53, niemeyer wrote:
> On 2012/10/02 06:45:19, fwereade wrote:
> > On 2012/10/01 18:55:38, niemeyer wrote:
> > So: we can pass in, or create upfront 3, watchers (soon 4 -- relations) and
> > avoid using them until later[0]... or we can pass in 1 watcher and make it
> > impossible to even seek truths we can't handle. That seemed to me to be a
big
> > win...
> 
> I apologize for still not understanding. It sounds so straightforward to me:
> 
> 1) Load unit
> 2) Load service
> 4) Is unit or service dying? Bail if so.
> 3) Initialize watchers
> 5) Get into loop.
> 
> Why is it any more complex than that? This seems like straightforward code
that
> needs no explanation. As the logic is right now, there are heads-up comments
> both at the top and within the select loop describing why it's different than
> what one would inherently expect.
> 
> I won't argue over this, though. If you still feel more comfortable as it is,
> let's move on.

I just had another go, and the duplication upset me again; I'll probably submit
this as-is, and have another in the followup (which I *think* will require a
*State anyway, which alters the balance of the filter a little, and feels like
it might cause it to click).

https://codereview.appspot.com/6589045/diff/3001/worker/uniter/filter.go#newc...
worker/uniter/filter.go:138: log.Printf("watching service changes")
On 2012/10/03 19:31:53, niemeyer wrote:
> On 2012/10/02 06:45:19, fwereade wrote:
> > On 2012/10/01 18:55:38, niemeyer wrote:
> > > Same.
> > 
> > How about "filter running" here, to go with s/watching unit changes/filter
> > starting up/ at the top of the loop?
> 
> What is a filter and why wasn't it running before?
> 
> I'd drop both this and the filter starting up messages, or at least turn them
> into Debugf.

Gone :-).
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b