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

Unified Diff: third_party/grpc/tools/http2_interop/ping.go

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
Index: third_party/grpc/tools/http2_interop/ping.go
diff --git a/third_party/grpc/tools/http2_interop/ping.go b/third_party/grpc/tools/http2_interop/ping.go
new file mode 100644
index 0000000000000000000000000000000000000000..6011eed4511c4a9f46ed77c8d55b3aa8be935b99
--- /dev/null
+++ b/third_party/grpc/tools/http2_interop/ping.go
@@ -0,0 +1,65 @@
+package http2interop
+
+import (
+ "fmt"
+ "io"
+)
+
+type PingFrame struct {
+ Header FrameHeader
+ Data []byte
+}
+
+const (
+ PING_ACK = 0x01
+)
+
+func (f *PingFrame) GetHeader() *FrameHeader {
+ return &f.Header
+}
+
+func (f *PingFrame) ParsePayload(r io.Reader) error {
+ raw := make([]byte, f.Header.Length)
+ if _, err := io.ReadFull(r, raw); err != nil {
+ return err
+ }
+ return f.UnmarshalPayload(raw)
+}
+
+func (f *PingFrame) UnmarshalPayload(raw []byte) error {
+ if f.Header.Length != len(raw) {
+ return fmt.Errorf("Invalid Payload length %d != %d", f.Header.Length, len(raw))
+ }
+ if f.Header.Length != 8 {
+ return fmt.Errorf("Invalid Payload length %d", f.Header.Length)
+ }
+
+ f.Data = []byte(string(raw))
+
+ return nil
+}
+
+func (f *PingFrame) MarshalPayload() ([]byte, error) {
+ if len(f.Data) != 8 {
+ return nil, fmt.Errorf("Invalid Payload length %d", len(f.Data))
+ }
+ return []byte(string(f.Data)), nil
+}
+
+func (f *PingFrame) MarshalBinary() ([]byte, error) {
+ payload, err := f.MarshalPayload()
+ if err != nil {
+ return nil, err
+ }
+
+ f.Header.Length = len(payload)
+ f.Header.Type = PingFrameType
+ header, err := f.Header.MarshalBinary()
+ if err != nil {
+ return nil, err
+ }
+
+ header = append(header, payload...)
+
+ return header, nil
+}
« no previous file with comments | « third_party/grpc/tools/http2_interop/http2interop_test.go ('k') | third_party/grpc/tools/http2_interop/s6.5.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698