Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 Loading... | |
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 } |
LEFT | RIGHT |