/src/canopy/sddl/sddl_itf.go

https://github.com/canopy-project/canopy-cloud · Go · 190 lines · 78 code · 36 blank · 76 comment · 0 complexity · aed1cd0bc09880e73bee55711a8220df MD5 · raw file

  1. // Copyright 2014 SimpleThings, Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package sddl
  15. import (
  16. )
  17. // DatatypeEnum is the datatype of a Cloud Variable
  18. type DatatypeEnum int
  19. const (
  20. DATATYPE_INVALID DatatypeEnum = iota
  21. DATATYPE_VOID
  22. DATATYPE_STRING
  23. DATATYPE_BOOL
  24. DATATYPE_INT8
  25. DATATYPE_UINT8
  26. DATATYPE_INT16
  27. DATATYPE_UINT16
  28. DATATYPE_INT32
  29. DATATYPE_UINT32
  30. DATATYPE_FLOAT32
  31. DATATYPE_FLOAT64
  32. DATATYPE_DATETIME
  33. DATATYPE_STRUCT
  34. DATATYPE_ARRAY
  35. )
  36. // DirectionEnum is the "direction" of a Cloud Variable -- that is, who can
  37. // modify a Cloud Variale (device, cloud, or both)
  38. type DirectionEnum int
  39. const (
  40. DIRECTION_INVALID DirectionEnum = iota
  41. DIRECTION_INOUT
  42. DIRECTION_IN
  43. DIRECTION_OUT
  44. )
  45. // OptionalityEnum is the "optionality" of a Cloud Variable -- whether or not
  46. // the Cloud Variable can be omitted in transactions.
  47. type OptionalityEnum int
  48. const (
  49. OPTIONALITY_INVALID OptionalityEnum = iota
  50. OPTIONALITY_OPTIONAL
  51. OPTIONALITY_REQUIRED
  52. )
  53. // NumericDisplayHintEnum is a metatdata hint telling the application how to
  54. // display the Cloud Variable's numeric value.
  55. type NumericDisplayHintEnum int
  56. const (
  57. NUMERIC_DISPLAY_HINT_INVALID NumericDisplayHintEnum = iota
  58. NUMERIC_DISPLAY_HINT_NORMAL
  59. NUMERIC_DISPLAY_HINT_PERCENTAGE
  60. NUMERIC_DISPLAY_HINT_SCIENTIFIC
  61. NUMERIC_DISPLAY_HINT_HEX
  62. )
  63. // SDDL provides an abstracted interface for working with SDDL content
  64. type SDDL interface {
  65. // Parse an SDDL document, provided as a golang JSON object.
  66. ParseDocument(docJson map[string]interface{}) (*Document, error)
  67. // Parse an SDDL document, provided as a string
  68. ParseDocumentString(docJson string) (*Document, error)
  69. // Parse an SDDL variable definition.
  70. // <decl> is the variable declaration: "optional in float32 temperature".
  71. // <propsJson> is a golang JSON object containing additional properties:
  72. // {
  73. // "min-value" : -100,
  74. // "max-value" : 150,
  75. // "units" : "degrees_c",
  76. // ...
  77. // }
  78. ParseVarDef(decl string, propsJson map[string]interface{}) (*VarDef, error)
  79. // Extend a struct by adding new members
  80. // TODO: make method of VarDef?
  81. Extend(varDef VarDef, jsn map[string]interface{}) error
  82. // Create a new empty SDDL document.
  83. NewEmptyDocument() Document
  84. // Create a new Cloud Variable definition for an empty "struct".
  85. NewEmptyStruct() VarDef
  86. }
  87. // VarDef is a Cloud Variable definition.
  88. // A Cloud Variable definition consists of:
  89. // - A declaration: "optional out float32 temperature"
  90. // - Additional properties: {min-value: -100.0}
  91. // - Child members for composite types (like arrays & structs)
  92. type VarDef interface {
  93. // Get the datatype of this Cloud Variable, ex: DATATYPE_FLOAT32 or
  94. // DATATYPE_STRUCT
  95. Datatype() DatatypeEnum
  96. // Get the full declaration string, ex: "optional out float32 temperature"
  97. Declaration() string
  98. // Get full name of this Cloud Variable, ex: "temperature", "gps.longitude"
  99. Fullname() string
  100. // Does this Cloud Variable have a numeric datatype?
  101. IsNumeric() bool
  102. // Get a golang JSON representation of this Cloud Variable definition.
  103. Json() map[string]interface{}
  104. // Internal routine does the actual work of encoding to JSON
  105. jsonEncode() (map[string]interface{}, error)
  106. // Get the "max-value" property for this Cloud Variable, cast to a float64.
  107. // Returns an error if the Cloud Variable does not have a numeric type.
  108. MaxValue() (float64, error)
  109. // Get the "min-value" property for this Cloud Variable, cast to a float64.
  110. // Returns an error if the Cloud Variable does not have a numeric type.
  111. MinValue() (float64, error)
  112. // Get name of this Cloud Variable, ex: "temperature", "longitude"
  113. Name() string
  114. // Get the "numeric-display-hint" property for this Cloud Variable.
  115. // Returns an error if the Cloud Variable does not have a numeric type.
  116. NumericDisplayHint() (NumericDisplayHintEnum, error)
  117. // Get the "regex" property, used for string input validation.
  118. // Returns an error if the Cloud Variable does not have a string type
  119. Regex() (string, error)
  120. // Get the children of this Cloud Variable if it is a "struct".
  121. // Returns an error if the Cloud Variable is not DATATYPE_STRUCT
  122. StructMembers() ([]VarDef, error)
  123. // Get a string JSON representation of this Cloud Variable definition.
  124. ToString() (string, error)
  125. // Get the "units" property for this Cloud Variable.
  126. // Returns an error if the Cloud Variable does not have a basic type.
  127. Units() (string, error)
  128. }
  129. // Document is an SDDL document. It contains zero or more Cloud Variable
  130. // definitions as well as other metadata.
  131. type Document interface{
  132. // TODO: other qualifiers & properties?
  133. AddVarDef(name string, datatype DatatypeEnum) (VarDef, error)
  134. // Get the document's authors
  135. Authors() []string
  136. // Get the document's "description" metadata
  137. Description() string
  138. // Add new member variables to this document
  139. Extend(jsn map[string]interface{}) error
  140. // Get a golang JSON representation of this SDDL document.
  141. Json() map[string]interface{}
  142. // Find a member variable by name
  143. LookupVarDef(varName string) (VarDef, error)
  144. // Remove a member variable by name
  145. // Returns true if removed, false if not found
  146. RemoveVarDef(varName string) (bool, error)
  147. // Get a string JSON representation of this SDDL document.
  148. ToString() (string, error)
  149. // Get the document's Cloud Variable definitions.
  150. VarDefs() []VarDef
  151. }
  152. // Singleton Sys gives access to parsing routines:
  153. // sddl.Sys.ParseDocument(...)
  154. var Sys SDDLSys