Added methods for relation endpoints to topology.
Relation endpoints needed two methods for testing and
key retrieving in topology.
https://code.launchpad.net/~themue/juju/go-state-topology-relation-endpoints/+merge/105156
Requires: https://code.launchpad.net/~themue/juju/go-state-topology-relations-without-endpoints/+merge/104765
(do not edit description out of merge proposal)
https://codereview.appspot.com/6198055/diff/1/state/topology.go File state/topology.go (right): https://codereview.appspot.com/6198055/diff/1/state/topology.go#newcode550 state/topology.go:550: if service == nil || service.Name != e.RelationName || ...
12 years, 11 months ago
(2012-05-09 18:25:35 UTC)
#2
https://codereview.appspot.com/6198055/diff/1/state/topology.go
File state/topology.go (right):
https://codereview.appspot.com/6198055/diff/1/state/topology.go#newcode550
state/topology.go:550: if service == nil || service.Name != e.RelationName ||
scope != e.RelationScope {
I'm pretty sure that "service.Name != e.RelationName" is either insane, or it
betrays a serious misnaming issue somewhere.
That said, per prereq review, I think we should drop RelationName anyway.
https://codereview.appspot.com/6198055/diff/1/state/topology.go#newcode563
state/topology.go:563: // between "endpoints" or "found" will be false.
I'm -1 on the ... here, I think it's a wart in the python version and I'd prefer
not to duplicate it in Go. Also, it feels like "found" is redundant -- can't we
just return a key of ""? How about:
func (t *topology) RelationKey(ep1, ep2 RelationEndpoint) (string, error)
func (t *topology) PeerRelationKey(ep RelationEndpoint) (string, error)
...and, given that, I think that HasRelationBetweenEndpoints is actually
completely redundant.
https://codereview.appspot.com/6198055/diff/1/state/topology.go#newcode576
state/topology.go:576: for key, relation := range t.topology.Relations {
Please double-check why the implementation here is different to the one in
HasRelationBetweenEndpoints... by gut says that this is evidence of a bug
somewhere.
Please take a look. https://codereview.appspot.com/6198055/diff/1/state/topology.go File state/topology.go (right): https://codereview.appspot.com/6198055/diff/1/state/topology.go#newcode550 state/topology.go:550: if service == nil || ...
12 years, 10 months ago
(2012-05-14 18:09:13 UTC)
#3
Please take a look.
https://codereview.appspot.com/6198055/diff/1/state/topology.go
File state/topology.go (right):
https://codereview.appspot.com/6198055/diff/1/state/topology.go#newcode550
state/topology.go:550: if service == nil || service.Name != e.RelationName ||
scope != e.RelationScope {
On 2012/05/09 18:25:35, fwereade wrote:
> I'm pretty sure that "service.Name != e.RelationName" is either insane, or it
> betrays a serious misnaming issue somewhere.
>
> That said, per prereq review, I think we should drop RelationName anyway.
Obsolete due to refactoring.
https://codereview.appspot.com/6198055/diff/1/state/topology.go#newcode563
state/topology.go:563: // between "endpoints" or "found" will be false.
On 2012/05/09 18:25:35, fwereade wrote:
> I'm -1 on the ... here, I think it's a wart in the python version and I'd
prefer
> not to duplicate it in Go. Also, it feels like "found" is redundant -- can't
we
> just return a key of ""? How about:
>
> func (t *topology) RelationKey(ep1, ep2 RelationEndpoint) (string, error)
>
> func (t *topology) PeerRelationKey(ep RelationEndpoint) (string, error)
>
> ...and, given that, I think that HasRelationBetweenEndpoints is actually
> completely redundant.
Done, looks better now.
https://codereview.appspot.com/6198055/diff/1/state/topology.go#newcode576
state/topology.go:576: for key, relation := range t.topology.Relations {
On 2012/05/09 18:25:35, fwereade wrote:
> Please double-check why the implementation here is different to the one in
> HasRelationBetweenEndpoints... by gut says that this is evidence of a bug
> somewhere.
Obsolete changed due to refactoring.
https://codereview.appspot.com/6198055/diff/5001/state/topology.go File state/topology.go (right): https://codereview.appspot.com/6198055/diff/5001/state/topology.go#newcode545 state/topology.go:545: return "", nil If the developer asks for a ...
12 years, 10 months ago
(2012-05-17 19:16:45 UTC)
#4
https://codereview.appspot.com/6198055/diff/8002/state/topology.go File state/topology.go (right): https://codereview.appspot.com/6198055/diff/8002/state/topology.go#newcode20 state/topology.go:20: errRelationDoesNotExist = errors.New("relation does not exist") If we define ...
12 years, 10 months ago
(2012-05-21 17:39:25 UTC)
#7
https://codereview.appspot.com/6198055/diff/8002/state/topology.go
File state/topology.go (right):
https://codereview.appspot.com/6198055/diff/8002/state/topology.go#newcode20
state/topology.go:20: errRelationDoesNotExist = errors.New("relation does not
exist")
If we define that error more nicely, we can allow it to pop out to of the state
package when using it. For example:
type noRelationError struct {
endpoint1, endpoint2 RelationEndpoint
}
func (e *noRelationError) Error() string {
if e.endpoint2 != nil {
return fmt.Errorf("state: no peer relation for %s", (what here?))
} else {
return fmt.Errorf("state: no relation between %s and %s", (what here?))
}
}
Not sure about the details of the error messages, but it should be something
nice that defines the endpoints.
What do you think?
12 years, 10 months ago
(2012-05-21 17:43:19 UTC)
#9
On 2012/05/21 17:39:25, niemeyer wrote:
> https://codereview.appspot.com/6198055/diff/8002/state/topology.go
> File state/topology.go (right):
>
> https://codereview.appspot.com/6198055/diff/8002/state/topology.go#newcode20
> state/topology.go:20: errRelationDoesNotExist = errors.New("relation does not
> exist")
> If we define that error more nicely, we can allow it to pop out to of the
state
> package when using it. For example:
>
> type noRelationError struct {
> endpoint1, endpoint2 RelationEndpoint
> }
>
> func (e *noRelationError) Error() string {
> if e.endpoint2 != nil {
> return fmt.Errorf("state: no peer relation for %s", (what here?))
> } else {
> return fmt.Errorf("state: no relation between %s and %s", (what
here?))
> }
> }
>
> Not sure about the details of the error messages, but it should be something
> nice that defines the endpoints.
>
> What do you think?
Good idea. I would even export the endpoints. So the receiver of that error can
analyze it more than only print the message.
Also in a good direction, thanks Frank. https://codereview.appspot.com/6198055/diff/9002/state/relation.go File state/relation.go (right): https://codereview.appspot.com/6198055/diff/9002/state/relation.go#newcode55 state/relation.go:55: func (e ...
12 years, 10 months ago
(2012-05-23 23:14:39 UTC)
#11
*** Submitted: Added methods for relation endpoints to topology. Relation endpoints needed two methods for ...
12 years, 10 months ago
(2012-05-30 07:59:51 UTC)
#21
*** Submitted:
Added methods for relation endpoints to topology.
Relation endpoints needed two methods for testing and
key retrieving in topology.
R=fwereade, niemeyer
CC=
https://codereview.appspot.com/6198055
Issue 6198055: Added methods for relation endpoints to topology.
(Closed)
Created 12 years, 11 months ago by TheMue
Modified 12 years, 10 months ago
Reviewers: mp+105156_code.launchpad.net
Base URL:
Comments: 44