bcl.proto 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // this is prototype only!!!
  2. package bcl;
  3. message TimeSpan {
  4. optional sint64 value = 1; // the size of the timespan (in units of the selected scale)
  5. optional TimeSpanScale scale = 2 [default = DAYS]; // the scale of the timespan
  6. enum TimeSpanScale {
  7. DAYS = 0;
  8. HOURS = 1;
  9. MINUTES = 2;
  10. SECONDS = 3;
  11. MILLISECONDS = 4;
  12. TICKS = 5;
  13. MINMAX = 15; // dubious
  14. }
  15. }
  16. message DateTime {
  17. optional sint64 value = 1; // the offset (in units of the selected scale) from 1970/01/01
  18. optional TimeSpanScale scale = 2 [default = DAYS]; // the scale of the timespan
  19. enum TimeSpanScale {
  20. DAYS = 0;
  21. HOURS = 1;
  22. MINUTES = 2;
  23. SECONDS = 3;
  24. MILLISECONDS = 4;
  25. TICKS = 5;
  26. MINMAX = 15; // dubious
  27. }
  28. }
  29. message NetObjectProxy {
  30. optional int32 existingObjectKey = 1; // for a tracked object, the key of the **first** time this object was seen
  31. optional int32 newObjectKey = 2; // for a tracked object, a **new** key, the first time this object is seen
  32. optional int32 existingTypeKey = 3; // for dynamic typing, the key of the **first** time this type was seen
  33. optional int32 newTypeKey = 4; // for dynamic typing, a **new** key, the first time this type is seen
  34. optional string typeName = 8; // for dynamic typing, the name of the type (only present along with newTypeKey)
  35. optional bytes payload = 10; // the new string/value (only present along with newObjectKey)
  36. }
  37. message Guid {
  38. optional fixed64 lo = 1; // the first 8 bytes of the guid
  39. optional fixed64 hi = 2; // the second 8 bytes of the guid
  40. }
  41. message Decimal {
  42. optional uint64 lo = 1; // the first 64 bits of the underlying value
  43. optional uint32 hi = 2; // the last 32 bis of the underlying value
  44. optional uint32 signScale = 3; // the number of decimal digits (bits 1-16), and the sign (bit 0)
  45. }