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

Delta Between Two Patch Sets: state/machine.go

Issue 6844103: state: add InstanceId type
Left Patch Set: Created 12 years, 4 months ago
Right Patch Set: state: add InstanceId type Created 12 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « environs/openstack/provider.go ('k') | state/machine_test.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 package state 1 package state
2 2
3 import ( 3 import (
4 "fmt" 4 "fmt"
5 "labix.org/v2/mgo" 5 "labix.org/v2/mgo"
6 "labix.org/v2/mgo/txn" 6 "labix.org/v2/mgo/txn"
7 "launchpad.net/juju-core/state/presence" 7 "launchpad.net/juju-core/state/presence"
8 "launchpad.net/juju-core/trivial" 8 "launchpad.net/juju-core/trivial"
9 "time" 9 "time"
10 ) 10 )
11 11
12 // InstanceId values hold provider-specific instance identifiers. 12 // An InstanceId is a provider-specific identifier associated with an
niemeyer 2012/11/28 18:17:17 // An InstanceId is a provider-specific identifier
fwereade 2012/11/28 18:41:00 Done.
13 // instance (physical or virtual machine allocated in the provider).
13 type InstanceId string 14 type InstanceId string
14 15
15 // Machine represents the state of a machine. 16 // Machine represents the state of a machine.
16 type Machine struct { 17 type Machine struct {
17 st *State 18 st *State
18 doc machineDoc 19 doc machineDoc
19 } 20 }
20 21
21 // machineDoc represents the internal state of a machine in MongoDB. 22 // machineDoc represents the internal state of a machine in MongoDB.
22 type machineDoc struct { 23 type machineDoc struct {
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 return fmt.Errorf("cannot set instance id of machine %v: %v", m, onAbort(err, errNotAlive)) 220 return fmt.Errorf("cannot set instance id of machine %v: %v", m, onAbort(err, errNotAlive))
220 } 221 }
221 m.doc.InstanceId = id 222 m.doc.InstanceId = id
222 return nil 223 return nil
223 } 224 }
224 225
225 // String returns a unique description of this machine. 226 // String returns a unique description of this machine.
226 func (m *Machine) String() string { 227 func (m *Machine) String() string {
227 return m.doc.Id 228 return m.doc.Id
228 } 229 }
LEFTRIGHT

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