Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: common/api/dm/service/v1/quest_desc_normalize.go

Issue 1537883002: Initial distributor implementation (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: fix imports and make dummy.go a real file Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « common/api/dm/service/v1/proto_gae.gen.go ('k') | common/api/dm/service/v1/service.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: common/api/dm/service/v1/quest_desc_normalize.go
diff --git a/common/api/dm/service/v1/quest_desc_normalize.go b/common/api/dm/service/v1/quest_desc_normalize.go
new file mode 100644
index 0000000000000000000000000000000000000000..fba1efe89db80caf410ae2aa7d8d5f4c1623ce84
--- /dev/null
+++ b/common/api/dm/service/v1/quest_desc_normalize.go
@@ -0,0 +1,66 @@
+// Copyright 2016 The LUCI Authors. All rights reserved.
+// Use of this source code is governed under the Apache License, Version 2.0
+// that can be found in the LICENSE file.
+
+package dm
+
+import (
+ "crypto/sha256"
+ "encoding/base64"
+ "fmt"
+
+ "github.com/golang/protobuf/proto"
+ "github.com/luci/luci-go/common/api/template"
+)
+
+// IsEmpty returns true if this metadata retry message only contains
+// zero-values.
+func (q *Quest_Desc_Meta_Retry) IsEmpty() bool {
+ return q.Crashed == 0 && q.Expired == 0 && q.Failed == 0 && q.TimedOut == 0
+}
+
+// IsEmpty returns true if this metadata only contains zero-values.
+func (q *Quest_Desc_Meta) IsEmpty() bool {
+ return q.AsAccount == "" && q.Retry.IsEmpty()
+}
+
+var (
+ // QuestIDLength is the number of encoded bytes to use. It removes the
+ // single padding character.
+ QuestIDLength = base64.URLEncoding.EncodedLen(sha256.Size) - 1
+)
+
+// QuestDescPayloadMaxLength is the maximum length (in bytes) of an
+// un-normalized Quest payload.
+const QuestDescPayloadMaxLength = 256 * 1024
+
+// Normalize returns an error iff the Quest_Desc is invalid.
+func (q *Quest_Desc) Normalize() error {
+ if q.Meta == nil {
+ q.Meta = &Quest_Desc_Meta{Retry: &Quest_Desc_Meta_Retry{}}
+ } else if q.Meta.Retry == nil {
+ q.Meta.Retry = &Quest_Desc_Meta_Retry{}
+ }
+
+ if len(q.JsonPayload) > QuestDescPayloadMaxLength {
+ return fmt.Errorf("quest payload is too large: %d > %d",
+ len(q.JsonPayload), QuestDescPayloadMaxLength)
+ }
+ normed, err := template.NormalizeJSON(q.JsonPayload, true)
+ if err != nil {
+ return fmt.Errorf("failed to normalize payload: %s", err)
+ }
+ q.JsonPayload = normed
+ return nil
+}
+
+// QuestID computes the DM compatible quest ID for this Quest_Desc. The
+// Quest_Desc should already be Normalize()'d.
+func (q *Quest_Desc) QuestID() string {
+ data, err := proto.Marshal(q)
+ if err != nil {
+ panic(err)
+ }
+ h := sha256.Sum256(data)
+ return base64.URLEncoding.EncodeToString(h[:])[:QuestIDLength]
+}
« no previous file with comments | « common/api/dm/service/v1/proto_gae.gen.go ('k') | common/api/dm/service/v1/service.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698