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

Unified Diff: state/api/uniter/uniter.go

Issue 13559043: api: Implement RelationUnitsWatcher in client API (Closed)
Patch Set: api: Implement RelationUnitsWatcher in client API Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « state/api/uniter/unit.go ('k') | state/api/uniter/uniter_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: state/api/uniter/uniter.go
=== modified file 'state/api/uniter/uniter.go'
--- state/api/uniter/uniter.go 2013-08-19 15:08:17 +0000
+++ state/api/uniter/uniter.go 2013-09-05 09:07:30 +0000
@@ -14,15 +14,17 @@
// State provides access to the Uniter API facade.
type State struct {
caller common.Caller
+ // unitTag contains the authenticated unit's tag.
+ unitTag string
}
// NewState creates a new client-side Uniter facade.
-func NewState(caller common.Caller) *State {
- return &State{caller}
+func NewState(caller common.Caller, authTag string) *State {
+ return &State{caller, authTag}
}
-// unitLife requests the lifecycle of the given unit from the server.
-func (st *State) unitLife(tag string) (params.Life, error) {
+// life requests the lifecycle of the given entity from the server.
+func (st *State) life(tag string) (params.Life, error) {
var result params.LifeResults
args := params.Entities{
Entities: []params.Entity{{Tag: tag}},
@@ -40,9 +42,31 @@
return result.Results[0].Life, nil
}
+// relation requests relation information from the server.
+func (st *State) relation(relationTag, unitTag string) (params.RelationResult, error) {
+ nothing := params.RelationResult{}
+ var result params.RelationResults
+ args := params.RelationUnits{
+ RelationUnits: []params.RelationUnit{
+ {Relation: relationTag, Unit: unitTag},
+ },
+ }
+ err := st.caller.Call("Uniter", "", "Relation", args, &result)
+ if err != nil {
+ return nothing, err
+ }
+ if len(result.Results) != 1 {
+ return nothing, fmt.Errorf("expected one result, got %d", len(result.Results))
+ }
+ if err := result.Results[0].Error; err != nil {
+ return nothing, err
+ }
+ return result.Results[0], nil
+}
+
// Unit provides access to methods of a state.Unit through the facade.
func (st *State) Unit(tag string) (*Unit, error) {
- life, err := st.unitLife(tag)
+ life, err := st.life(tag)
if err != nil {
return nil, err
}
@@ -53,7 +77,7 @@
}, nil
}
-// Service returns a service state by name.
+// Service returns a service state by tag.
func (st *State) Service(tag string) (*Service, error) {
// TODO: Return a new uniter.Service proxy object for tag.
panic("not implemented")
@@ -74,17 +98,26 @@
panic("not implemented")
}
-// Relation returns the existing relation with the given id.
-func (st *State) Relation(id int) (*Relation, error) {
- // TODO: Return a new uniter.Relation proxy object.
- panic("not implemented")
+// Relation returns the existing relation with the given tag.
+func (st *State) Relation(tag string) (*Relation, error) {
+ // Get the life, then get the id and other info.
+ life, err := st.life(tag)
+ if err != nil {
+ return nil, err
+ }
+ result, err := st.relation(tag, st.unitTag)
+ if err != nil {
+ return nil, err
+ }
+ return &Relation{
+ id: result.Id,
+ tag: tag,
+ life: life,
+ st: st,
+ }, nil
}
// Environment returns the environment entity.
func (st *State) Environment() (*Environment, error) {
return &Environment{st}, nil
}
-
-// TODO: Possibly add st.KeyRelation(key) as well, but we might
-// not need it, if the relation tags change to be "relation-<key>",
-// or it might just be a wrapper around tag-to-key conversion.
« no previous file with comments | « state/api/uniter/unit.go ('k') | state/api/uniter/uniter_test.go » ('j') | no next file with comments »

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