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

Unified Diff: state/service.go

Issue 7598043: Annotation documents and Environment Entity
Patch Set: Annotation documents and Environment Entity Created 12 years 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/open.go ('k') | state/service_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: state/service.go
=== modified file 'state/service.go'
--- state/service.go 2013-03-20 11:34:51 +0000
+++ state/service.go 2013-03-20 13:29:13 +0000
@@ -30,20 +30,18 @@
RelationCount int
Exposed bool
TxnRevno int64 `bson:"txn-revno"`
- Annotations map[string]string
}
func newService(st *State, doc *serviceDoc) *Service {
svc := &Service{
st: st,
doc: *doc,
- annotator: annotator{
- st: st,
- coll: st.services.Name,
- id: doc.Name,
- },
- }
- svc.annotator.annotations = &svc.doc.Annotations
+ }
+ svc.annotator = annotator{
+ globalKey: svc.globalKey(),
+ entityName: svc.EntityName(),
+ st: st,
+ }
return svc
}
@@ -59,23 +57,6 @@
return "service-" + s.Name()
}
-// PasswordValid currently just returns false. Implemented here so that
-// a service can be used as an Entity.
-func (s *Service) PasswordValid(password string) bool {
- return false
-}
-
-// SetPassword currently just returns an error. Implemented here so that
-// a service can be used as an Entity.
-func (s *Service) SetPassword(password string) error {
- return fmt.Errorf("cannot set password of service")
-}
-
-// Annotations returns the service annotations.
-func (s *Service) Annotations() map[string]string {
- return s.doc.Annotations
-}
-
// globalKey returns the global database key for the service.
func (s *Service) globalKey() string {
return "s#" + s.doc.Name
@@ -209,7 +190,7 @@
// removeOps returns the operations required to remove the service. Supplied
// asserts will be included in the operation on the service document.
func (s *Service) removeOps(asserts D) []txn.Op {
- return []txn.Op{{
+ ops := []txn.Op{{
C: s.st.services.Name,
Id: s.doc.Name,
Assert: asserts,
@@ -227,6 +208,7 @@
Id: s.settingsKey(),
Remove: true,
}}
+ return append(ops, annotationRemoveOp(s.st, s.globalKey()))
}
// IsExposed returns whether this service is exposed. The explicitly open
@@ -591,7 +573,7 @@
} else {
svcOp.Assert = D{{"life", Dying}, {"unitcount", D{{"$gt", 1}}}}
}
- return append(ops, svcOp), nil
+ return append(ops, svcOp, annotationRemoveOp(s.st, u.globalKey())), nil
}
// Unit returns the service's unit with name.
« no previous file with comments | « state/open.go ('k') | state/service_test.go » ('j') | no next file with comments »

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