StickyNoteViewController.swift 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. *
  3. * Copyright 2016, Google Inc.
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are
  8. * met:
  9. *
  10. * * Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * * Redistributions in binary form must reproduce the above
  13. * copyright notice, this list of conditions and the following disclaimer
  14. * in the documentation and/or other materials provided with the
  15. * distribution.
  16. * * Neither the name of Google Inc. nor the names of its
  17. * contributors may be used to endorse or promote products derived from
  18. * this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. *
  32. */
  33. import AppKit
  34. import gRPC
  35. import QuickProto
  36. class StickyNoteViewController : NSViewController, NSTextFieldDelegate {
  37. @IBOutlet weak var messageField: NSTextField!
  38. @IBOutlet weak var imageView: NSImageView!
  39. @IBAction func messageReturnPressed(sender: NSTextField) {
  40. callServer(address:"localhost:8081")
  41. }
  42. override func viewDidLoad() {
  43. gRPC.initialize()
  44. }
  45. func log(_ message: String) {
  46. print(message)
  47. }
  48. func callServer(address:String) {
  49. let fileDescriptorSet = FileDescriptorSet(filename:"stickynote.out")
  50. // build the message
  51. if let requestMessage = fileDescriptorSet.createMessage(name:"StickyNoteRequest") {
  52. requestMessage.addField(name:"message", value:self.messageField.stringValue)
  53. let requestHost = "foo.test.google.fr"
  54. let requestMethod = "/messagepb.StickyNote/Get"
  55. let requestBuffer = ByteBuffer(data:requestMessage.serialize())
  56. let requestMetadata = Metadata(pairs:[MetadataPair(key:"x", value:"xylophone"),
  57. MetadataPair(key:"y", value:"yu"),
  58. MetadataPair(key:"z", value:"zither")])
  59. let client = Client(address:address)
  60. let response = client.performRequest(host:requestHost,
  61. method:requestMethod,
  62. message:requestBuffer,
  63. metadata:requestMetadata)
  64. if let initialMetadata = response.initialMetadata {
  65. for j in 0..<initialMetadata.count() {
  66. self.log("Received initial metadata -> "
  67. + initialMetadata.key(index:j) + " : "
  68. + initialMetadata.value(index:j))
  69. }
  70. }
  71. self.log("Received status: \(response.status) " + response.statusDetails)
  72. if let responseBuffer = response.message,
  73. let responseMessage = fileDescriptorSet.readMessage(name:"StickyNoteResponse",
  74. proto:responseBuffer.data()) {
  75. responseMessage.forOneField(name:"image") {(field) in
  76. if let image = NSImage(data: field.data() as Data) {
  77. self.imageView.image = image
  78. }
  79. }
  80. }
  81. if let trailingMetadata = response.trailingMetadata {
  82. for j in 0..<trailingMetadata.count() {
  83. self.log("Received trailing metadata -> "
  84. + trailingMetadata.key(index:j) + " : "
  85. + trailingMetadata.value(index:j))
  86. }
  87. }
  88. }
  89. }
  90. }