Flex  0.17.9
types.h
Go to the documentation of this file.
1 
16 #ifndef GRAPHSCOPE_TYPES_H_
17 #define GRAPHSCOPE_TYPES_H_
18 
19 #include <assert.h>
20 
21 #include <chrono>
22 #include <istream>
23 #include <ostream>
24 #include <vector>
25 
26 #include <boost/date_time/posix_time/posix_time.hpp>
27 
28 #include "grape/serialization/in_archive.h"
29 #include "grape/serialization/out_archive.h"
30 
31 #include <yaml-cpp/yaml.h>
32 
33 namespace grape {
34 
35 inline bool operator<(const EmptyType& lhs, const EmptyType& rhs) {
36  return false;
37 }
38 
39 } // namespace grape
40 
41 namespace gs {
42 
43 // primitive types
44 static constexpr const char* DT_UNSIGNED_INT8 = "DT_UNSIGNED_INT8";
45 static constexpr const char* DT_UNSIGNED_INT16 = "DT_UNSIGNED_INT16";
46 static constexpr const char* DT_SIGNED_INT32 = "DT_SIGNED_INT32";
47 static constexpr const char* DT_UNSIGNED_INT32 = "DT_UNSIGNED_INT32";
48 static constexpr const char* DT_SIGNED_INT64 = "DT_SIGNED_INT64";
49 static constexpr const char* DT_UNSIGNED_INT64 = "DT_UNSIGNED_INT64";
50 static constexpr const char* DT_BOOL = "DT_BOOL";
51 static constexpr const char* DT_FLOAT = "DT_FLOAT";
52 static constexpr const char* DT_DOUBLE = "DT_DOUBLE";
53 static constexpr const char* DT_STRING = "DT_STRING";
54 static constexpr const char* DT_STRINGMAP = "DT_STRINGMAP";
55 static constexpr const char* DT_DATE = "DT_DATE32";
56 static constexpr const char* DT_DAY = "DT_DAY32";
57 
58 enum class StorageStrategy {
59  kNone,
60  kMem,
61  kDisk,
62 };
63 
64 namespace impl {
65 
66 enum class PropertyTypeImpl {
67  kInt32,
68  kDate,
69  kDay,
71  kEmpty,
72  kInt64,
73  kDouble,
74  kUInt32,
75  kUInt64,
76  kBool,
77  kFloat,
78  kUInt8,
79  kUInt16,
80  kStringMap,
81  kVarChar,
83  kLabel,
85  kRecord,
86  kString,
87 };
88 
89 // Stores additional type information for PropertyTypeImpl
91  uint16_t max_length; // for varchar
92 };
93 } // namespace impl
94 
95 struct PropertyType {
96  static constexpr const uint16_t STRING_DEFAULT_MAX_LENGTH = 256;
99 
100  constexpr PropertyType()
103  : type_enum(type), additional_type_info() {}
104  constexpr PropertyType(impl::PropertyTypeImpl type, uint16_t max_length)
105  : type_enum(type), additional_type_info({.max_length = max_length}) {
106  assert(type == impl::PropertyTypeImpl::kVarChar);
107  }
108 
109  bool IsVarchar() const;
110  std::string ToString() const;
111 
112  static PropertyType Empty();
113  static PropertyType Bool();
114  static PropertyType UInt8();
115  static PropertyType UInt16();
116  static PropertyType Int32();
117  static PropertyType UInt32();
118  static PropertyType Float();
119  static PropertyType Int64();
120  static PropertyType UInt64();
121  static PropertyType Double();
122  static PropertyType Date();
123  static PropertyType Day();
124  static PropertyType StringView();
125  static PropertyType StringMap();
126  static PropertyType Varchar(uint16_t max_length);
127  static PropertyType VertexGlobalId();
128  static PropertyType Label();
129  static PropertyType RecordView();
130  static PropertyType Record();
131  static PropertyType String();
132 
133  static const PropertyType kEmpty;
134  static const PropertyType kBool;
135  static const PropertyType kUInt8;
136  static const PropertyType kUInt16;
137  static const PropertyType kInt32;
138  static const PropertyType kUInt32;
139  static const PropertyType kFloat;
140  static const PropertyType kInt64;
141  static const PropertyType kUInt64;
142  static const PropertyType kDouble;
143  static const PropertyType kDate;
144  static const PropertyType kDay;
145  static const PropertyType kStringView;
146  static const PropertyType kStringMap;
148  static const PropertyType kLabel;
149  static const PropertyType kRecordView;
150  static const PropertyType kRecord;
151  static const PropertyType kString;
152 
153  bool operator==(const PropertyType& other) const;
154  bool operator!=(const PropertyType& other) const;
155 };
156 
157 namespace config_parsing {
159 PropertyType StringToPrimitivePropertyType(const std::string& str);
160 } // namespace config_parsing
161 
162 // encoded with label_id and vid_t.
163 struct GlobalId {
164  using label_id_t = uint8_t;
165  using vid_t = uint32_t;
166  using gid_t = uint64_t;
167  static constexpr int32_t label_id_offset = 64 - sizeof(label_id_t) * 8;
168  static constexpr uint64_t vid_mask = (1ULL << label_id_offset) - 1;
169 
170  static label_id_t get_label_id(gid_t gid);
171  static vid_t get_vid(gid_t gid);
172 
173  uint64_t global_id;
174 
175  GlobalId();
177  GlobalId(gid_t gid);
178 
179  label_id_t label_id() const;
180  vid_t vid() const;
181 
182  std::string to_string() const;
183 };
184 
185 inline bool operator==(const GlobalId& lhs, const GlobalId& rhs) {
186  return lhs.global_id == rhs.global_id;
187 }
188 
189 inline bool operator!=(const GlobalId& lhs, const GlobalId& rhs) {
190  return lhs.global_id != rhs.global_id;
191 }
192 inline bool operator<(const GlobalId& lhs, const GlobalId& rhs) {
193  return lhs.global_id < rhs.global_id;
194 }
195 
196 inline bool operator>(const GlobalId& lhs, const GlobalId& rhs) {
197  return lhs.global_id > rhs.global_id;
198 }
199 
200 struct __attribute__((packed)) Date {
201  Date() = default;
202  ~Date() = default;
203  Date(int64_t x);
204 
205  std::string to_string() const;
206 
207  bool operator<(const Date& rhs) const {
208  return milli_second < rhs.milli_second;
209  }
210 
211  int64_t milli_second;
212 };
213 
214 struct DayValue {
215  uint32_t year : 18;
216  uint32_t month : 4;
217  uint32_t day : 5;
218  uint32_t hour : 5;
219 };
220 
221 struct Day {
222  Day() = default;
223  ~Day() = default;
224 
225  Day(int64_t ts);
226 
227  std::string to_string() const;
228 
229  uint32_t to_u32() const;
230  void from_u32(uint32_t val);
231 
232  int64_t to_timestamp() const {
233  const boost::posix_time::ptime epoch(boost::gregorian::date(1970, 1, 1));
234 
235  boost::gregorian::date new_date(year(), month(), day());
236  boost::posix_time::ptime new_time_point(
237  new_date, boost::posix_time::time_duration(hour(), 0, 0));
238  boost::posix_time::time_duration diff = new_time_point - epoch;
239  int64_t new_timestamp_sec = diff.total_seconds();
240 
241  return new_timestamp_sec * 1000;
242  }
243 
244  void from_timestamp(int64_t ts) {
245  const boost::posix_time::ptime epoch(boost::gregorian::date(1970, 1, 1));
246  int64_t ts_sec = ts / 1000;
247  boost::posix_time::ptime time_point =
248  epoch + boost::posix_time::seconds(ts_sec);
249  boost::posix_time::ptime::date_type date = time_point.date();
250  boost::posix_time::time_duration td = time_point.time_of_day();
251  this->value.internal.year = date.year();
252  this->value.internal.month = date.month().as_number();
253  this->value.internal.day = date.day();
254  this->value.internal.hour = td.hours();
255 
256  int64_t ts_back = to_timestamp();
257  CHECK_EQ(ts, ts_back);
258  }
259 
260  bool operator<(const Day& rhs) const { return this->to_u32() < rhs.to_u32(); }
261  bool operator==(const Day& rhs) const {
262  return this->to_u32() == rhs.to_u32();
263  }
264 
265  int year() const;
266  int month() const;
267  int day() const;
268  int hour() const;
269 
270  union {
271  DayValue internal;
272  uint32_t integer;
273  } value;
274 };
275 
276 struct LabelKey {
277  using label_data_type = uint8_t;
278  int32_t label_id;
279  LabelKey() = default;
281 };
282 
283 class Table;
284 struct Any;
285 struct RecordView {
286  RecordView() : offset(0), table(nullptr) {}
287  RecordView(size_t offset, const Table* table)
288  : offset(offset), table(table) {}
289  size_t size() const;
290  Any operator[](size_t idx) const;
291 
292  template <typename T>
293  T get_field(int col_id) const;
294 
295  size_t offset;
296  const Table* table;
297 };
298 
299 struct Any;
300 struct Record {
301  Record() : len(0), props(nullptr) {}
302  Record(size_t len);
303  Record(const Record& other);
304  Record(Record&& other);
305  Record& operator=(const Record& other);
306  Record(const std::vector<Any>& vec);
307  Record(const std::initializer_list<Any>& list);
308  ~Record();
309  size_t size() const { return len; }
310  Any operator[](size_t idx) const;
311  Any* begin() const;
312  Any* end() const;
313 
314  size_t len;
316 };
317 
318 struct StringPtr {
319  StringPtr() : ptr(nullptr) {}
320  StringPtr(const std::string& str) : ptr(new std::string(str)) {}
321  StringPtr(const StringPtr& other) {
322  if (other.ptr) {
323  ptr = new std::string(*other.ptr);
324  } else {
325  ptr = nullptr;
326  }
327  }
328  StringPtr(StringPtr&& other) : ptr(other.ptr) { other.ptr = nullptr; }
329  StringPtr& operator=(const StringPtr& other) {
330  if (this == &other) {
331  return *this;
332  }
333  if (ptr) {
334  delete ptr;
335  }
336  if (other.ptr) {
337  ptr = new std::string(*other.ptr);
338  } else {
339  ptr = nullptr;
340  }
341  return *this;
342  }
344  if (ptr) {
345  delete ptr;
346  }
347  }
348  // return string_view
349  std::string_view operator*() const {
350  return std::string_view((*ptr).data(), (*ptr).size());
351  }
352  std::string* ptr;
353 };
354 union AnyValue {
355  AnyValue() {}
357 
358  bool b;
359  int32_t i;
360  uint32_t ui;
361  float f;
362  int64_t l;
363  uint64_t ul;
366 
367  Date d;
369  std::string_view s;
370  double db;
371  uint8_t u8;
372  uint16_t u16;
374 
375  // Non-trivial types
378 };
379 
380 template <typename T>
382 
383 struct Any {
384  Any() : type(PropertyType::kEmpty) {}
385 
386  Any(const Any& other) : type(other.type) {
387  if (type == PropertyType::kRecord) {
388  new (&value.record) Record(other.value.record);
390  new (&value.s_ptr) StringPtr(other.value.s_ptr);
391  } else {
392  memcpy(static_cast<void*>(&value), static_cast<const void*>(&other.value),
393  sizeof(AnyValue));
394  }
395  }
396 
397  Any(Any&& other) : type(other.type) {
398  if (type == PropertyType::kRecord) {
399  new (&value.record) Record(std::move(other.value.record));
401  new (&value.s_ptr) StringPtr(std::move(other.value.s_ptr));
402  } else {
403  memcpy(static_cast<void*>(&value), static_cast<const void*>(&other.value),
404  sizeof(AnyValue));
405  }
406  }
407 
408  Any(const std::initializer_list<Any>& list) {
410  new (&value.record) Record(list);
411  }
412  Any(const std::vector<Any>& vec) {
414  new (&value.record) Record(vec);
415  }
416 
417  Any(const std::string& str) {
419  new (&value.s_ptr) StringPtr(str);
420  }
421 
422  template <typename T>
423  Any(const T& val) {
424  Any a = Any::From(val);
425  type = a.type;
426  if (type == PropertyType::kRecord) {
427  new (&value.record) Record(a.value.record);
429  new (&value.s_ptr) StringPtr(a.value.s_ptr);
430  } else {
431  memcpy(static_cast<void*>(&value), static_cast<const void*>(&a.value),
432  sizeof(AnyValue));
433  }
434  }
435 
436  Any& operator=(const Any& other) {
437  if (this == &other) {
438  return *this;
439  }
440  if (type == PropertyType::kRecord) {
441  value.record.~Record();
442  }
443  type = other.type;
444  if (type == PropertyType::kRecord) {
445  new (&value.record) Record(other.value.record);
447  new (&value.s_ptr) StringPtr(other.value.s_ptr);
448  } else {
449  memcpy(static_cast<void*>(&value), static_cast<const void*>(&other.value),
450  sizeof(AnyValue));
451  }
452  return *this;
453  }
454 
455  ~Any() {
456  if (type == PropertyType::kRecord) {
457  value.record.~Record();
460  }
461  }
462 
463  int64_t get_long() const {
464  assert(type == PropertyType::kInt64);
465  return value.l;
466  }
467  void set_bool(bool v) {
469  value.b = v;
470  }
471 
472  void set_i32(int32_t v) {
474  value.i = v;
475  }
476 
477  void set_u32(uint32_t v) {
479  value.ui = v;
480  }
481 
482  void set_i64(int64_t v) {
484  value.l = v;
485  }
486 
487  void set_u64(uint64_t v) {
489  value.ul = v;
490  }
491 
494  value.vertex_gid = v;
495  }
496 
499  value.label_key = v;
500  }
501 
502  void set_date(int64_t v) {
504  value.d.milli_second = v;
505  }
506 
507  void set_date(Date v) {
509  value.d = v;
510  }
511 
512  void set_day(Day v) {
514  value.day = v;
515  }
516 
517  void set_string_view(std::string_view v) {
519  value.s = v;
520  }
521 
522  void set_string(const std::string& v) {
524  new (&value.s_ptr) StringPtr(v);
525  }
526 
527  void set_float(float v) {
529  value.f = v;
530  }
531 
532  void set_double(double db) {
534  value.db = db;
535  }
536 
537  void set_u8(uint8_t v) {
539  value.u8 = v;
540  }
541 
542  void set_u16(uint16_t v) {
544  value.u16 = v;
545  }
546 
549  value.record_view = v;
550  }
551 
552  void set_record(Record v) {
553  if (type == PropertyType::kRecord) {
554  value.record.~Record();
555  }
557  new (&(value.record)) Record(v);
558  }
559 
560  std::string to_string() const {
561  if (type == PropertyType::kInt32) {
562  return std::to_string(value.i);
563  } else if (type == PropertyType::kInt64) {
564  return std::to_string(value.l);
566  return *value.s_ptr.ptr;
567  } else if (type == PropertyType::kStringView) {
568  return std::string(value.s.data(), value.s.size());
569  // return value.s.to_string();
570  } else if (type == PropertyType::kDate) {
571  return value.d.to_string();
572  } else if (type == PropertyType::kDay) {
573  return value.day.to_string();
574  } else if (type == PropertyType::kEmpty) {
575  return "NULL";
576  } else if (type == PropertyType::kDouble) {
577  return std::to_string(value.db);
578  } else if (type == PropertyType::kUInt8) {
579  return std::to_string(value.u8);
580  } else if (type == PropertyType::kUInt16) {
581  return std::to_string(value.u16);
582  } else if (type == PropertyType::kUInt32) {
583  return std::to_string(value.ui);
584  } else if (type == PropertyType::kUInt64) {
585  return std::to_string(value.ul);
586  } else if (type == PropertyType::kBool) {
587  return value.b ? "true" : "false";
588  } else if (type == PropertyType::kFloat) {
589  return std::to_string(value.f);
590  } else if (type == PropertyType::kVertexGlobalId) {
591  return value.vertex_gid.to_string();
592  } else if (type == PropertyType::kLabel) {
594  } else {
595  LOG(FATAL) << "Unexpected property type: "
596  << static_cast<int>(type.type_enum);
597  return "";
598  }
599  }
600 
601  const std::string& AsString() const {
603  return *value.s_ptr.ptr;
604  }
605 
606  int64_t AsInt64() const {
607  assert(type == PropertyType::kInt64);
608  return value.l;
609  }
610 
611  uint64_t AsUInt64() const {
612  assert(type == PropertyType::kUInt64);
613  return value.ul;
614  }
615 
616  int32_t AsInt32() const {
617  assert(type == PropertyType::kInt32);
618  return value.i;
619  }
620 
621  uint32_t AsUInt32() const {
622  assert(type == PropertyType::kUInt32);
623  return value.ui;
624  }
625 
626  bool AsBool() const {
627  assert(type == PropertyType::kBool);
628  return value.b;
629  }
630 
631  double AsDouble() const {
632  assert(type == PropertyType::kDouble);
633  return value.db;
634  }
635 
636  float AsFloat() const {
637  assert(type == PropertyType::kFloat);
638  return value.f;
639  }
640 
641  std::string_view AsStringView() const {
642  assert(type == PropertyType::kStringView);
644  return value.s;
645  } else {
646  return *value.s_ptr.ptr;
647  }
648  }
649 
650  const Date& AsDate() const {
651  assert(type == PropertyType::kDate);
652  return value.d;
653  }
654 
655  const Day& AsDay() const {
656  assert(type == PropertyType::kDay);
657  return value.day;
658  }
659 
660  const GlobalId& AsGlobalId() const {
662  return value.vertex_gid;
663  }
664 
665  const LabelKey& AsLabelKey() const {
666  assert(type == PropertyType::kLabel);
667  return value.label_key;
668  }
669 
670  const RecordView& AsRecordView() const {
671  assert(type == PropertyType::kRecordView);
672  return value.record_view;
673  }
674 
675  const Record& AsRecord() const {
676  assert(type == PropertyType::kRecord);
677  return value.record;
678  }
679 
680  template <typename T>
681  static Any From(const T& value) {
683  }
684 
685  bool operator==(const Any& other) const {
686  if (type == other.type) {
687  if (type == PropertyType::kInt32) {
688  return value.i == other.value.i;
689  } else if (type == PropertyType::kInt64) {
690  return value.l == other.value.l;
691  } else if (type == PropertyType::kDate) {
692  return value.d.milli_second == other.value.d.milli_second;
693  } else if (type == PropertyType::kDay) {
694  return value.day == other.value.day;
696  return *value.s_ptr == other.AsStringView();
697  } else if (type == PropertyType::kStringView) {
698  return value.s == other.AsStringView();
699  } else if (type == PropertyType::kEmpty) {
700  return true;
701  } else if (type == PropertyType::kDouble) {
702  return value.db == other.value.db;
703  } else if (type == PropertyType::kUInt32) {
704  return value.ui == other.value.ui;
705  } else if (type == PropertyType::kUInt64) {
706  return value.ul == other.value.ul;
707  } else if (type == PropertyType::kBool) {
708  return value.b == other.value.b;
709  } else if (type == PropertyType::kFloat) {
710  return value.f == other.value.f;
711  } else if (type == PropertyType::kVertexGlobalId) {
712  return value.vertex_gid == other.value.vertex_gid;
713  } else if (type == PropertyType::kLabel) {
717  return false;
718  }
719  return value.s == other.value.s;
720  } else {
721  return false;
722  }
723  } else if (type == PropertyType::kRecordView) {
724  return value.record_view.offset == other.value.record_view.offset &&
726  } else if (type == PropertyType::kRecord) {
727  if (value.record.len != other.value.record.len) {
728  return false;
729  }
730  for (size_t i = 0; i < value.record.len; ++i) {
731  if (!(value.record.props[i] == other.value.record.props[i])) {
732  return false;
733  }
734  }
735  return true;
736  } else {
737  return false;
738  }
739  }
740 
741  bool operator<(const Any& other) const {
742  if (type == other.type) {
743  if (type == PropertyType::kInt32) {
744  return value.i < other.value.i;
745  } else if (type == PropertyType::kInt64) {
746  return value.l < other.value.l;
747  } else if (type == PropertyType::kDate) {
748  return value.d.milli_second < other.value.d.milli_second;
749  } else if (type == PropertyType::kDay) {
750  return value.day < other.value.day;
752  return *value.s_ptr < other.AsStringView();
753  } else if (type == PropertyType::kStringView) {
754  return value.s < other.AsStringView();
755  } else if (type == PropertyType::kEmpty) {
756  return false;
757  } else if (type == PropertyType::kDouble) {
758  return value.db < other.value.db;
759  } else if (type == PropertyType::kUInt32) {
760  return value.ui < other.value.ui;
761  } else if (type == PropertyType::kUInt64) {
762  return value.ul < other.value.ul;
763  } else if (type == PropertyType::kBool) {
764  return value.b < other.value.b;
765  } else if (type == PropertyType::kFloat) {
766  return value.f < other.value.f;
767  } else if (type == PropertyType::kVertexGlobalId) {
768  return value.vertex_gid < other.value.vertex_gid;
769  } else if (type == PropertyType::kLabel) {
771  } else if (type == PropertyType::kRecord) {
772  for (size_t i = 0; i < value.record.len; ++i) {
773  if (i >= other.value.record.len) {
774  return false;
775  }
776  if (value.record.props[i] < other.value.record.props[i]) {
777  return true;
778  } else if (other.value.record.props[i] < value.record.props[i]) {
779  return false;
780  }
781  }
782  return false;
783  } else {
784  return false;
785  }
786  } else {
787  LOG(FATAL) << "Type [" << static_cast<int>(type.type_enum) << "] and ["
788  << static_cast<int>(other.type.type_enum)
789  << "] cannot be compared..";
790  }
791  }
792 
795 };
796 
797 template <typename T>
798 struct ConvertAny {
799  static void to(const Any& value, T& out) {
800  LOG(FATAL) << "Unexpected convert type...";
801  }
802 };
803 
804 template <>
805 struct ConvertAny<bool> {
806  static void to(const Any& value, bool& out) {
807  CHECK(value.type == PropertyType::kBool);
808  out = value.value.b;
809  }
810 };
811 
812 template <>
813 struct ConvertAny<int32_t> {
814  static void to(const Any& value, int32_t& out) {
815  CHECK(value.type == PropertyType::kInt32);
816  out = value.value.i;
817  }
818 };
819 
820 template <>
821 struct ConvertAny<uint32_t> {
822  static void to(const Any& value, uint32_t& out) {
823  CHECK(value.type == PropertyType::kUInt32);
824  out = value.value.ui;
825  }
826 };
827 
828 template <>
829 struct ConvertAny<int64_t> {
830  static void to(const Any& value, int64_t& out) {
831  CHECK(value.type == PropertyType::kInt64);
832  out = value.value.l;
833  }
834 };
835 
836 template <>
837 struct ConvertAny<uint64_t> {
838  static void to(const Any& value, uint64_t& out) {
839  CHECK(value.type == PropertyType::kUInt64);
840  out = value.value.ul;
841  }
842 };
843 
844 template <>
846  static void to(const Any& value, GlobalId& out) {
847  CHECK(value.type == PropertyType::kVertexGlobalId);
848  out = value.value.vertex_gid;
849  }
850 };
851 
852 template <>
854  static void to(const Any& value, LabelKey& out) {
855  CHECK(value.type == PropertyType::kLabel);
856  out = value.value.label_key;
857  }
858 };
859 
860 template <>
861 struct ConvertAny<Date> {
862  static void to(const Any& value, Date& out) {
863  CHECK(value.type == PropertyType::kDate);
864  out = value.value.d;
865  }
866 };
867 
868 template <>
869 struct ConvertAny<Day> {
870  static void to(const Any& value, Day& out) {
871  CHECK(value.type == PropertyType::kDay);
872  out = value.value.day;
873  }
874 };
875 
876 template <>
877 struct ConvertAny<grape::EmptyType> {
878  static void to(const Any& value, grape::EmptyType& out) {
879  CHECK(value.type == PropertyType::kEmpty);
880  }
881 };
882 
883 template <>
884 struct ConvertAny<std::string> {
885  static void to(const Any& value, std::string& out) {
887  out = *value.value.s_ptr.ptr;
888  }
889 };
890 
891 template <>
892 struct ConvertAny<std::string_view> {
893  static void to(const Any& value, std::string_view& out) {
894  CHECK(value.type == PropertyType::kStringView);
895  out = value.value.s;
896  }
897 };
898 
899 template <>
900 struct ConvertAny<float> {
901  static void to(const Any& value, float& out) {
902  CHECK(value.type == PropertyType::kFloat);
903  out = value.value.f;
904  }
905 };
906 
907 template <>
908 struct ConvertAny<double> {
909  static void to(const Any& value, double& out) {
910  CHECK(value.type == PropertyType::kDouble);
911  out = value.value.db;
912  }
913 };
914 
915 template <>
917  static void to(const Any& value, RecordView& out) {
918  CHECK(value.type == PropertyType::kRecordView);
919  out.offset = value.value.record_view.offset;
920  out.table = value.value.record_view.table;
921  }
922 };
923 
924 template <>
926  static void to(const Any& value, Record& out) {
927  CHECK(value.type == PropertyType::kRecord);
928  out = value.value.record;
929  }
930 };
931 
932 template <typename T>
933 struct AnyConverter {};
934 
935 // specialization for bool
936 template <>
937 struct AnyConverter<bool> {
938  static PropertyType type() { return PropertyType::kBool; }
939 
940  static Any to_any(const bool& value) {
941  Any ret;
942  ret.set_bool(value);
943  return ret;
944  }
945  static const bool& from_any(const Any& value) {
946  CHECK(value.type == PropertyType::kBool);
947  return value.value.b;
948  }
949 
950  static const bool& from_any_value(const AnyValue& value) { return value.b; }
951 };
952 
953 template <>
954 struct AnyConverter<uint8_t> {
956  static Any to_any(const uint8_t& value) {
957  Any ret;
958  ret.set_u8(value);
959  return ret;
960  }
961  static const uint8_t& from_any(const Any& value) {
962  CHECK(value.type == PropertyType::kUInt8);
963  return value.value.u8;
964  }
965 };
966 
967 template <>
968 struct AnyConverter<uint16_t> {
970  static Any to_any(const uint16_t& value) {
971  Any ret;
972  ret.set_u16(value);
973  return ret;
974  }
975  static const uint16_t& from_any(const Any& value) {
976  CHECK(value.type == PropertyType::kUInt8);
977  return value.value.u16;
978  }
979 };
980 
981 template <>
982 struct AnyConverter<int32_t> {
984 
985  static Any to_any(const int32_t& value) {
986  Any ret;
987  ret.set_i32(value);
988  return ret;
989  }
990 
991  static const int32_t& from_any(const Any& value) {
992  CHECK(value.type == PropertyType::kInt32);
993  return value.value.i;
994  }
995 
996  static const int32_t& from_any_value(const AnyValue& value) {
997  return value.i;
998  }
999 };
1000 
1001 template <>
1002 struct AnyConverter<uint32_t> {
1004 
1005  static Any to_any(const uint32_t& value) {
1006  Any ret;
1007  ret.set_u32(value);
1008  return ret;
1009  }
1010 
1011  static const uint32_t& from_any(const Any& value) {
1012  CHECK(value.type == PropertyType::kUInt32);
1013  return value.value.ui;
1014  }
1015 
1016  static const uint32_t& from_any_value(const AnyValue& value) {
1017  return value.ui;
1018  }
1019 };
1020 template <>
1021 struct AnyConverter<int64_t> {
1023 
1024  static Any to_any(const int64_t& value) {
1025  Any ret;
1026  ret.set_i64(value);
1027  return ret;
1028  }
1029 
1030  static const int64_t& from_any(const Any& value) {
1031  CHECK(value.type == PropertyType::kInt64);
1032  return value.value.l;
1033  }
1034 
1035  static const int64_t& from_any_value(const AnyValue& value) {
1036  return value.l;
1037  }
1038 };
1039 
1040 template <>
1041 struct AnyConverter<uint64_t> {
1043 
1044  static Any to_any(const uint64_t& value) {
1045  Any ret;
1046  ret.set_u64(value);
1047  return ret;
1048  }
1049 
1050  static const uint64_t& from_any(const Any& value) {
1051  CHECK(value.type == PropertyType::kUInt64);
1052  return value.value.ul;
1053  }
1054 
1055  static const uint64_t& from_any_value(const AnyValue& value) {
1056  return value.ul;
1057  }
1058 };
1059 
1060 template <>
1063 
1064  static Any to_any(const GlobalId& value) {
1065  Any ret;
1066  ret.set_vertex_gid(value);
1067  return ret;
1068  }
1069 
1070  static const GlobalId& from_any(const Any& value) {
1071  CHECK(value.type == PropertyType::kVertexGlobalId);
1072  return value.value.vertex_gid;
1073  }
1074 
1075  static const GlobalId& from_any_value(const AnyValue& value) {
1076  return value.vertex_gid;
1077  }
1078 };
1079 
1080 template <>
1081 struct AnyConverter<Date> {
1083 
1084  static Any to_any(const Date& value) {
1085  Any ret;
1086  ret.set_date(value);
1087  return ret;
1088  }
1089 
1090  static Any to_any(int64_t value) {
1091  Any ret;
1092  ret.set_date(value);
1093  return ret;
1094  }
1095 
1096  static const Date& from_any(const Any& value) {
1097  CHECK(value.type == PropertyType::kDate);
1098  return value.value.d;
1099  }
1100 
1101  static const Date& from_any_value(const AnyValue& value) { return value.d; }
1102 };
1103 
1104 template <>
1106  static PropertyType type() { return PropertyType::kDay; }
1107 
1108  static Any to_any(const Day& value) {
1109  Any ret;
1110  ret.set_day(value);
1111  return ret;
1112  }
1113 
1114  static Any to_any(int64_t value) {
1115  Day dval(value);
1116  Any ret;
1117  ret.set_day(dval);
1118  return ret;
1119  }
1120 
1121  static const Day& from_any(const Any& value) {
1122  CHECK(value.type == PropertyType::kDay);
1123  return value.value.day;
1124  }
1125 
1126  static const Day& from_any_value(const AnyValue& value) { return value.day; }
1127 };
1128 
1129 template <>
1130 struct AnyConverter<std::string_view> {
1132 
1133  static Any to_any(const std::string_view& value) {
1134  Any ret;
1135  ret.set_string_view(value);
1136  return ret;
1137  }
1138 
1139  static const std::string_view& from_any(const Any& value) {
1140  CHECK(value.type == PropertyType::kStringView &&
1142  return value.value.s;
1143  }
1144 
1145  static const std::string_view& from_any_value(const AnyValue& value) {
1146  return value.s;
1147  }
1148 };
1149 
1150 template <>
1151 struct AnyConverter<std::string> {
1153 
1154  static Any to_any(const std::string& value) {
1155  Any ret;
1156  ret.set_string(value);
1157  return ret;
1158  }
1159 
1160  static std::string& from_any(const Any& value) {
1162  return *value.value.s_ptr.ptr;
1163  }
1164 
1165  static std::string& from_any_value(const AnyValue& value) {
1166  return *value.s_ptr.ptr;
1167  }
1168 };
1169 
1170 template <>
1171 struct AnyConverter<grape::EmptyType> {
1173 
1174  static Any to_any(const grape::EmptyType& value) {
1175  Any ret;
1176  return ret;
1177  }
1178 
1179  static grape::EmptyType from_any(const Any& value) {
1180  CHECK(value.type == PropertyType::kEmpty);
1181  return grape::EmptyType();
1182  }
1183 
1184  static grape::EmptyType from_any_value(const AnyValue& value) {
1185  return grape::EmptyType();
1186  }
1187 };
1188 
1189 template <>
1190 struct AnyConverter<double> {
1192 
1193  static Any to_any(const double& value) {
1194  Any ret;
1195  ret.set_double(value);
1196  return ret;
1197  }
1198 
1199  static const double& from_any(const Any& value) {
1200  CHECK(value.type == PropertyType::kDouble);
1201  return value.value.db;
1202  }
1203 
1204  static const double& from_any_value(const AnyValue& value) {
1205  return value.db;
1206  }
1207 };
1208 
1209 // specialization for float
1210 template <>
1211 struct AnyConverter<float> {
1213 
1214  static Any to_any(const float& value) {
1215  Any ret;
1216  ret.set_float(value);
1217  return ret;
1218  }
1219 
1220  static const float& from_any(const Any& value) {
1221  CHECK(value.type == PropertyType::kFloat);
1222  return value.value.f;
1223  }
1224 
1225  static const float& from_any_value(const AnyValue& value) { return value.f; }
1226 };
1227 
1228 template <>
1231 
1232  static Any to_any(const LabelKey& value) {
1233  Any ret;
1234  ret.set_label_key(value);
1235  return ret;
1236  }
1237 
1238  static const LabelKey& from_any(const Any& value) {
1239  CHECK(value.type == PropertyType::kLabel);
1240  return value.value.label_key;
1241  }
1242 
1243  static const LabelKey& from_any_value(const AnyValue& value) {
1244  return value.label_key;
1245  }
1246 };
1247 Any ConvertStringToAny(const std::string& value, const gs::PropertyType& type);
1248 
1249 template <>
1252 
1253  static Any to_any(const RecordView& value) {
1254  Any ret;
1255  ret.set_record_view(value);
1256  return ret;
1257  }
1258 
1259  static const RecordView& from_any(const Any& value) {
1260  CHECK(value.type == PropertyType::kRecordView);
1261  return value.value.record_view;
1262  }
1263 
1264  static const RecordView& from_any_value(const AnyValue& value) {
1265  return value.record_view;
1266  }
1267 };
1268 
1269 template <>
1272 
1273  static Any to_any(const Record& value) {
1274  Any ret;
1275  ret.set_record(value);
1276  return ret;
1277  }
1278 
1279  static const Record& from_any(const Any& value) {
1280  CHECK(value.type == PropertyType::kRecord);
1281  return value.value.record;
1282  }
1283 
1284  static const Record& from_any_value(const AnyValue& value) {
1285  return value.record;
1286  }
1287 };
1288 
1289 template <typename T>
1290 T RecordView::get_field(int col_id) const {
1291  auto val = operator[](col_id);
1292  T ret{};
1293  ConvertAny<T>::to(val, ret);
1294  return ret;
1295 }
1296 
1297 grape::InArchive& operator<<(grape::InArchive& in_archive,
1298  const PropertyType& value);
1299 grape::OutArchive& operator>>(grape::OutArchive& out_archive,
1300  PropertyType& value);
1301 
1302 grape::InArchive& operator<<(grape::InArchive& in_archive, const Any& value);
1303 grape::OutArchive& operator>>(grape::OutArchive& out_archive, Any& value);
1304 
1305 grape::InArchive& operator<<(grape::InArchive& in_archive,
1306  const std::string_view& value);
1307 grape::OutArchive& operator>>(grape::OutArchive& out_archive,
1308  std::string_view& value);
1309 
1310 grape::InArchive& operator<<(grape::InArchive& in_archive,
1311  const GlobalId& value);
1312 grape::OutArchive& operator>>(grape::OutArchive& out_archive, GlobalId& value);
1313 
1314 } // namespace gs
1315 
1316 namespace boost {
1317 // override boost hash function for EmptyType
1318 inline std::size_t hash_value(const grape::EmptyType& value) { return 0; }
1319 inline std::size_t hash_value(const gs::GlobalId& value) {
1320  return std::hash<uint64_t>()(value.global_id);
1321 }
1322 // overload hash_value for LabelKey
1323 inline std::size_t hash_value(const gs::LabelKey& key) {
1324  return std::hash<int32_t>()(key.label_id);
1325 }
1326 
1327 } // namespace boost
1328 
1329 namespace std {
1330 
1331 inline ostream& operator<<(ostream& os, const gs::Date& dt) {
1332  os << dt.to_string();
1333  return os;
1334 }
1335 
1336 inline ostream& operator<<(ostream& os, const gs::Day& dt) {
1337  os << dt.to_string();
1338  return os;
1339 }
1340 
1341 inline ostream& operator<<(ostream& os, gs::PropertyType pt) {
1342  if (pt == gs::PropertyType::Bool()) {
1343  os << "bool";
1344  } else if (pt == gs::PropertyType::Empty()) {
1345  os << "empty";
1346  } else if (pt == gs::PropertyType::UInt8()) {
1347  os << "uint8";
1348  } else if (pt == gs::PropertyType::UInt16()) {
1349  os << "uint16";
1350  } else if (pt == gs::PropertyType::Int32()) {
1351  os << "int32";
1352  } else if (pt == gs::PropertyType::UInt32()) {
1353  os << "uint32";
1354  } else if (pt == gs::PropertyType::Float()) {
1355  os << "float";
1356  } else if (pt == gs::PropertyType::Int64()) {
1357  os << "int64";
1358  } else if (pt == gs::PropertyType::UInt64()) {
1359  os << "uint64";
1360  } else if (pt == gs::PropertyType::Double()) {
1361  os << "double";
1362  } else if (pt == gs::PropertyType::Date()) {
1363  os << "date";
1364  } else if (pt == gs::PropertyType::Day()) {
1365  os << "day";
1366  } else if (pt == gs::PropertyType::StringView()) {
1367  os << "string";
1368  } else if (pt == gs::PropertyType::StringMap()) {
1369  os << "string_map";
1371  os << "varchar(" << pt.additional_type_info.max_length << ")";
1372  } else if (pt == gs::PropertyType::VertexGlobalId()) {
1373  os << "vertex_global_id";
1374  } else {
1375  os << "unknown";
1376  }
1377  return os;
1378 }
1379 
1380 template <>
1381 struct hash<gs::GlobalId> {
1382  size_t operator()(const gs::GlobalId& value) const {
1383  return std::hash<uint64_t>()(value.global_id);
1384  }
1385 };
1386 
1387 } // namespace std
1388 
1389 namespace grape {
1390 inline bool operator==(const EmptyType& a, const EmptyType& b) { return true; }
1391 
1392 inline bool operator!=(const EmptyType& a, const EmptyType& b) { return false; }
1393 } // namespace grape
1394 
1395 namespace YAML {
1396 template <>
1397 struct convert<gs::PropertyType> {
1398  // concurrently preseve backwards compatibility with old config files
1399  static bool decode(const Node& config, gs::PropertyType& property_type) {
1400  if (config["primitive_type"]) {
1402  config["primitive_type"].as<std::string>());
1403  } else if (config["string"]) {
1404  if (config["string"].IsMap()) {
1405  if (config["string"]["long_text"]) {
1406  property_type = gs::PropertyType::StringView();
1407  } else if (config["string"]["var_char"]) {
1408  if (config["string"]["var_char"]["max_length"]) {
1409  property_type = gs::PropertyType::Varchar(
1410  config["string"]["var_char"]["max_length"].as<int32_t>());
1411  }
1412  property_type = gs::PropertyType::Varchar(
1414  } else {
1415  LOG(ERROR) << "Unrecognized string type";
1416  }
1417  } else {
1418  LOG(ERROR) << "string should be a map";
1419  }
1420  } else if (config["temporal"]) {
1421  if (config["temporal"]["date32"]) {
1422  property_type = gs::PropertyType::Day();
1423  } else if (config["temporal"]["timestamp"]) {
1424  property_type = gs::PropertyType::Date();
1425  } else {
1426  LOG(ERROR) << "Unrecognized temporal type";
1427  }
1428  }
1429  // compatibility with old config files
1430  else if (config["day"]) {
1432  config["day"].as<std::string>());
1433  } else if (config["varchar"]) {
1434  if (config["varchar"]["max_length"]) {
1435  property_type = gs::PropertyType::Varchar(
1436  config["varchar"]["max_length"].as<int32_t>());
1437  } else {
1438  property_type = gs::PropertyType::Varchar(
1440  }
1441  } else if (config["date"]) {
1442  property_type = gs::PropertyType::Date();
1443  } else {
1444  LOG(ERROR) << "Unrecognized property type: " << config;
1445  return false;
1446  }
1447  return true;
1448  }
1449 
1450  static Node encode(const gs::PropertyType& type) {
1451  YAML::Node node;
1452  if (type == gs::PropertyType::Bool() || type == gs::PropertyType::Int32() ||
1453  type == gs::PropertyType::UInt32() ||
1454  type == gs::PropertyType::Float() ||
1455  type == gs::PropertyType::Int64() ||
1456  type == gs::PropertyType::UInt64() ||
1457  type == gs::PropertyType::Double()) {
1458  node["primitive_type"] =
1460  } else if (type == gs::PropertyType::StringView() ||
1461  type == gs::PropertyType::StringMap()) {
1462  node["string"]["long_text"] = "";
1463  } else if (type.IsVarchar()) {
1464  node["string"]["var_char"]["max_length"] =
1466  } else if (type == gs::PropertyType::Date()) {
1467  node["temporal"]["timestamp"] = "";
1468  } else if (type == gs::PropertyType::Day()) {
1469  node["temporal"]["date32"] = "";
1470  } else {
1471  LOG(ERROR) << "Unrecognized property type: " << type;
1472  }
1473  return node;
1474  }
1475 };
1476 } // namespace YAML
1477 
1478 #endif // GRAPHSCOPE_TYPES_H_
gs::AnyValue::db
double db
Definition: types.h:370
grape
Definition: types.h:33
gs::AnyConverter< LabelKey >::to_any
static Any to_any(const LabelKey &value)
Definition: types.h:1232
gs::AnyConverter< bool >::type
static PropertyType type()
Definition: types.h:938
gs::Day::operator==
bool operator==(const Day &rhs) const
Definition: types.h:261
gs::AnyConverter< uint16_t >::to_any
static Any to_any(const uint16_t &value)
Definition: types.h:970
gs::PropertyType::kFloat
static const PropertyType kFloat
Definition: types.h:139
gs::impl::PropertyTypeImpl::kDay
@ kDay
gs::PropertyType::UInt64
static PropertyType UInt64()
Definition: types.cc:302
gs::PropertyType::String
static PropertyType String()
Definition: types.cc:314
gs::ConvertAny< std::string >::to
static void to(const Any &value, std::string &out)
Definition: types.h:885
gs::AnyConverter< GlobalId >::type
static PropertyType type()
Definition: types.h:1062
gs::impl::PropertyTypeImpl::kUInt8
@ kUInt8
gs::Record::~Record
~Record()
Definition: types.cc:152
gs::AnyConverter< grape::EmptyType >::type
static PropertyType type()
Definition: types.h:1172
gs::DayValue::year
uint32_t year
Definition: types.h:215
gs::PropertyType::VertexGlobalId
static PropertyType VertexGlobalId()
Definition: types.cc:327
gs::AnyConverter< RecordView >::to_any
static Any to_any(const RecordView &value)
Definition: types.h:1253
gs::Any::AsBool
bool AsBool() const
Definition: types.h:626
gs::impl::PropertyTypeImpl::kEmpty
@ kEmpty
gs::AnyValue::s_ptr
StringPtr s_ptr
Definition: types.h:377
gs::impl::PropertyTypeImpl::kRecord
@ kRecord
gs::AnyConverter< Date >::from_any_value
static const Date & from_any_value(const AnyValue &value)
Definition: types.h:1101
gs::AnyConverter< Day >::to_any
static Any to_any(const Day &value)
Definition: types.h:1108
gs::Any::AsUInt64
uint64_t AsUInt64() const
Definition: types.h:611
gs::Any
Definition: types.h:383
gs::Any::operator==
bool operator==(const Any &other) const
Definition: types.h:685
gs::GlobalId::to_string
std::string to_string() const
Definition: types.cc:525
gs::PropertyType::kUInt8
static const PropertyType kUInt8
Definition: types.h:135
gs::AnyValue::l
int64_t l
Definition: types.h:362
gs::StringPtr
Definition: types.h:318
gs::ConvertAny< Date >::to
static void to(const Any &value, Date &out)
Definition: types.h:862
gs::PropertyType::Empty
static PropertyType Empty()
Definition: types.cc:278
gs::AnyConverter< double >::from_any_value
static const double & from_any_value(const AnyValue &value)
Definition: types.h:1204
gs::Any::set_vertex_gid
void set_vertex_gid(GlobalId v)
Definition: types.h:492
gs::AnyValue::record
Record record
Definition: types.h:376
gs::Day
Definition: types.h:221
gs::AnyConverter< grape::EmptyType >::from_any_value
static grape::EmptyType from_any_value(const AnyValue &value)
Definition: types.h:1184
gs::Any::set_label_key
void set_label_key(LabelKey v)
Definition: types.h:497
gs::ConvertStringToAny
Any ConvertStringToAny(const std::string &value, const gs::PropertyType &type)
Definition: types.cc:551
gs::Record::begin
Any * begin() const
Definition: types.cc:149
gs::AnyConverter< double >::to_any
static Any to_any(const double &value)
Definition: types.h:1193
gs::DayValue::month
uint32_t month
Definition: types.h:216
gs::AnyConverter< bool >::from_any
static const bool & from_any(const Any &value)
Definition: types.h:945
gs::ConvertAny< bool >::to
static void to(const Any &value, bool &out)
Definition: types.h:806
gs::ConvertAny< grape::EmptyType >::to
static void to(const Any &value, grape::EmptyType &out)
Definition: types.h:878
gs::Any::AsLabelKey
const LabelKey & AsLabelKey() const
Definition: types.h:665
gs::AnyConverter< std::string >::type
static PropertyType type()
Definition: types.h:1152
gs::PropertyType::kString
static const PropertyType kString
Definition: types.h:151
gs::Any::set_u32
void set_u32(uint32_t v)
Definition: types.h:477
gs::operator>
bool operator>(const GlobalId &lhs, const GlobalId &rhs)
Definition: types.h:196
gs::AnyConverter< Day >::from_any
static const Day & from_any(const Any &value)
Definition: types.h:1121
gs::AnyValue::i
int32_t i
Definition: types.h:359
gs::AnyConverter< std::string_view >::to_any
static Any to_any(const std::string_view &value)
Definition: types.h:1133
gs::operator<
bool operator<(const GlobalId &lhs, const GlobalId &rhs)
Definition: types.h:192
gs::AnyConverter< std::string_view >::from_any
static const std::string_view & from_any(const Any &value)
Definition: types.h:1139
gs::StringPtr::StringPtr
StringPtr(const std::string &str)
Definition: types.h:320
gs::AnyValue
Definition: types.h:354
gs::AnyConverter< float >::from_any
static const float & from_any(const Any &value)
Definition: types.h:1220
gs::DT_DOUBLE
static constexpr const char * DT_DOUBLE
Definition: types.h:52
gs::Any::From
static Any From(const T &value)
Definition: types.h:681
gs::PropertyType::Label
static PropertyType Label()
Definition: types.cc:331
gs::DT_STRING
static constexpr const char * DT_STRING
Definition: types.h:53
gs::Any::Any
Any(const std::string &str)
Definition: types.h:417
gs::ConvertAny< uint32_t >::to
static void to(const Any &value, uint32_t &out)
Definition: types.h:822
gs::AnyConverter< Date >::to_any
static Any to_any(int64_t value)
Definition: types.h:1090
gs::AnyConverter< grape::EmptyType >::from_any
static grape::EmptyType from_any(const Any &value)
Definition: types.h:1179
gs::AnyConverter< Record >::from_any
static const Record & from_any(const Any &value)
Definition: types.h:1279
gs::Any::set_i64
void set_i64(int64_t v)
Definition: types.h:482
gs::PropertyType::StringView
static PropertyType StringView()
Definition: types.cc:317
gs::AnyConverter< int32_t >::from_any_value
static const int32_t & from_any_value(const AnyValue &value)
Definition: types.h:996
gs::operator!=
bool operator!=(const GlobalId &lhs, const GlobalId &rhs)
Definition: types.h:189
gs::PropertyType::Varchar
static PropertyType Varchar(uint16_t max_length)
Definition: types.cc:323
std::to_string
std::string to_string(const gs::flex::interactive::Code &status)
Definition: result.h:166
gs::impl::PropertyTypeImpl::kDouble
@ kDouble
gs::Day::operator<
bool operator<(const Day &rhs) const
Definition: types.h:260
gs::PropertyType::kDay
static const PropertyType kDay
Definition: types.h:144
gs::PropertyType::UInt32
static PropertyType UInt32()
Definition: types.cc:293
gs::AnyConverter< float >::type
static PropertyType type()
Definition: types.h:1212
gs::GlobalId
Definition: types.h:163
gs::PropertyType::Bool
static PropertyType Bool()
Definition: types.cc:281
gs::impl::PropertyTypeImpl::kInt64
@ kInt64
gs::GlobalId::vid_mask
static constexpr uint64_t vid_mask
Definition: types.h:168
gs::StorageStrategy::kDisk
@ kDisk
boost
Definition: types.h:1316
gs::GlobalId::vid_t
uint32_t vid_t
Definition: types.h:165
gs::Day::to_u32
uint32_t to_u32() const
Definition: types.cc:539
gs::PropertyType::kDate
static const PropertyType kDate
Definition: types.h:143
gs::LabelKey::label_data_type
uint8_t label_data_type
Definition: types.h:277
gs::DT_DATE
static constexpr const char * DT_DATE
Definition: types.h:55
gs::AnyConverter< Date >::to_any
static Any to_any(const Date &value)
Definition: types.h:1084
gs::ConvertAny::to
static void to(const Any &value, T &out)
Definition: types.h:799
gs::DT_FLOAT
static constexpr const char * DT_FLOAT
Definition: types.h:51
gs
Definition: adj_list.h:23
gs::Any::set_string
void set_string(const std::string &v)
Definition: types.h:522
gs::RecordView::offset
size_t offset
Definition: types.h:295
gs::RecordView::operator[]
Any operator[](size_t idx) const
Definition: types.cc:89
gs::AnyValue::record_view
RecordView record_view
Definition: types.h:373
gs::PropertyType::kLabel
static const PropertyType kLabel
Definition: types.h:148
gs::AnyConverter< RecordView >::from_any_value
static const RecordView & from_any_value(const AnyValue &value)
Definition: types.h:1264
gs::AnyConverter< LabelKey >::from_any
static const LabelKey & from_any(const Any &value)
Definition: types.h:1238
gs::AnyConverter< LabelKey >::from_any_value
static const LabelKey & from_any_value(const AnyValue &value)
Definition: types.h:1243
gs::DT_STRINGMAP
static constexpr const char * DT_STRINGMAP
Definition: types.h:54
gs::AnyConverter< grape::EmptyType >::to_any
static Any to_any(const grape::EmptyType &value)
Definition: types.h:1174
gs::PropertyType::kUInt64
static const PropertyType kUInt64
Definition: types.h:141
gs::impl::PropertyTypeImpl::kDate
@ kDate
YAML
Definition: types.h:1395
gs::Any::AsInt32
int32_t AsInt32() const
Definition: types.h:616
gs::PropertyType::kEmpty
static const PropertyType kEmpty
Definition: types.h:133
gs::AnyConverter< int32_t >::to_any
static Any to_any(const int32_t &value)
Definition: types.h:985
gs::StorageStrategy
StorageStrategy
Definition: types.h:58
gs::Any::AsInt64
int64_t AsInt64() const
Definition: types.h:606
gs::PropertyType::type_enum
impl::PropertyTypeImpl type_enum
Definition: types.h:97
gs::PropertyType::ToString
std::string ToString() const
Definition: types.cc:229
gs::Any::set_date
void set_date(int64_t v)
Definition: types.h:502
gs::impl::PropertyTypeImpl::kUInt32
@ kUInt32
gs::Record::operator[]
Any operator[](size_t idx) const
Definition: types.cc:142
gs::ConvertAny< int32_t >::to
static void to(const Any &value, int32_t &out)
Definition: types.h:814
gs::Any::set_u8
void set_u8(uint8_t v)
Definition: types.h:537
grape::operator==
bool operator==(const EmptyType &a, const EmptyType &b)
Definition: types.h:1390
gs::Any::set_double
void set_double(double db)
Definition: types.h:532
gs::impl::PropertyTypeImpl::kFloat
@ kFloat
gs::Any::set_bool
void set_bool(bool v)
Definition: types.h:467
gs::Table
Definition: table.h:30
gs::Any::AsUInt32
uint32_t AsUInt32() const
Definition: types.h:621
gs::ConvertAny< RecordView >::to
static void to(const Any &value, RecordView &out)
Definition: types.h:917
gs::AnyConverter< std::string >::from_any_value
static std::string & from_any_value(const AnyValue &value)
Definition: types.h:1165
gs::ConvertAny< int64_t >::to
static void to(const Any &value, int64_t &out)
Definition: types.h:830
gs::Day::to_timestamp
int64_t to_timestamp() const
Definition: types.h:232
gs::Record::len
size_t len
Definition: types.h:314
gs::AnyConverter< int32_t >::from_any
static const int32_t & from_any(const Any &value)
Definition: types.h:991
gs::config_parsing::StringToPrimitivePropertyType
PropertyType StringToPrimitivePropertyType(const std::string &str)
Definition: types.cc:55
gs::PropertyType::Date
static PropertyType Date()
Definition: types.cc:308
gs::Record::end
Any * end() const
Definition: types.cc:150
grape::operator<
bool operator<(const EmptyType &lhs, const EmptyType &rhs)
Definition: types.h:35
gs::Record::props
Any * props
Definition: types.h:315
gs::Any::AsGlobalId
const GlobalId & AsGlobalId() const
Definition: types.h:660
gs::PropertyType::STRING_DEFAULT_MAX_LENGTH
static constexpr const uint16_t STRING_DEFAULT_MAX_LENGTH
Definition: types.h:96
gs::Any::set_i32
void set_i32(int32_t v)
Definition: types.h:472
gs::PropertyType::kStringView
static const PropertyType kStringView
Definition: types.h:145
gs::AnyConverter< uint64_t >::type
static PropertyType type()
Definition: types.h:1042
gs::AnyValue::b
bool b
Definition: types.h:358
gs::Any::AsDouble
double AsDouble() const
Definition: types.h:631
gs::AnyConverter< double >::from_any
static const double & from_any(const Any &value)
Definition: types.h:1199
gs::AnyConverter< GlobalId >::from_any_value
static const GlobalId & from_any_value(const AnyValue &value)
Definition: types.h:1075
gs::Any::Any
Any(const std::initializer_list< Any > &list)
Definition: types.h:408
gs::AnyConverter< int64_t >::from_any
static const int64_t & from_any(const Any &value)
Definition: types.h:1030
gs::PropertyType::PropertyType
constexpr PropertyType(impl::PropertyTypeImpl type, uint16_t max_length)
Definition: types.h:104
gs::AnyConverter< Record >::to_any
static Any to_any(const Record &value)
Definition: types.h:1273
gs::AnyConverter< uint32_t >::from_any
static const uint32_t & from_any(const Any &value)
Definition: types.h:1011
gs::ConvertAny< double >::to
static void to(const Any &value, double &out)
Definition: types.h:909
gs::Any::Any
Any()
Definition: types.h:384
gs::Any::Any
Any(const Any &other)
Definition: types.h:386
gs::AnyConverter< GlobalId >::from_any
static const GlobalId & from_any(const Any &value)
Definition: types.h:1070
gs::PropertyType::Int64
static PropertyType Int64()
Definition: types.cc:299
gs::GlobalId::gid_t
uint64_t gid_t
Definition: types.h:166
gs::impl::PropertyTypeImpl::kLabel
@ kLabel
gs::AnyConverter< int32_t >::type
static PropertyType type()
Definition: types.h:983
gs::Any::value
AnyValue value
Definition: types.h:794
gs::Record
Definition: types.h:300
gs::GlobalId::vid
vid_t vid() const
Definition: types.cc:521
gs::Day::day
int day() const
Definition: types.cc:547
gs::RecordView::RecordView
RecordView()
Definition: types.h:286
gs::ConvertAny< float >::to
static void to(const Any &value, float &out)
Definition: types.h:901
gs::ConvertAny< Day >::to
static void to(const Any &value, Day &out)
Definition: types.h:870
gs::LabelKey::label_id
int32_t label_id
Definition: types.h:278
gs::AnyConverter< Date >::type
static PropertyType type()
Definition: types.h:1082
gs::PropertyType::kUInt32
static const PropertyType kUInt32
Definition: types.h:138
gs::AnyConverter< std::string >::from_any
static std::string & from_any(const Any &value)
Definition: types.h:1160
gs::AnyConverter< uint64_t >::to_any
static Any to_any(const uint64_t &value)
Definition: types.h:1044
gs::impl::AdditionalTypeInfo
Definition: types.h:90
gs::impl::PropertyTypeImpl::kRecordView
@ kRecordView
gs::impl::PropertyTypeImpl
PropertyTypeImpl
Definition: types.h:66
gs::PropertyType::StringMap
static PropertyType StringMap()
Definition: types.cc:320
gs::GlobalId::global_id
uint64_t global_id
Definition: types.h:173
gs::PropertyType::PropertyType
constexpr PropertyType()
Definition: types.h:100
gs::PropertyType::operator!=
bool operator!=(const PropertyType &other) const
Definition: types.cc:221
gs::ConvertAny< Record >::to
static void to(const Any &value, Record &out)
Definition: types.h:926
gs::__attribute__
struct __attribute__((packed)) ImmutableNbr< Date >
Definition: nbr.h:54
gs::DT_UNSIGNED_INT32
static constexpr const char * DT_UNSIGNED_INT32
Definition: types.h:47
gs::PropertyType::kRecordView
static const PropertyType kRecordView
Definition: types.h:149
gs::AnyConverter< std::string_view >::from_any_value
static const std::string_view & from_any_value(const AnyValue &value)
Definition: types.h:1145
gs::AnyConverter< Date >::from_any
static const Date & from_any(const Any &value)
Definition: types.h:1096
gs::AnyConverter< int64_t >::type
static PropertyType type()
Definition: types.h:1022
gs::Any::get_long
int64_t get_long() const
Definition: types.h:463
gs::DayValue
Definition: types.h:214
gs::Any::AsRecord
const Record & AsRecord() const
Definition: types.h:675
gs::AnyConverter< std::string >::to_any
static Any to_any(const std::string &value)
Definition: types.h:1154
gs::PropertyType::kDouble
static const PropertyType kDouble
Definition: types.h:142
gs::StringPtr::StringPtr
StringPtr()
Definition: types.h:319
gs::operator<<
std::ostream & operator<<(std::ostream &os, const LoadingStatus &status)
Definition: basic_fragment_loader.cc:22
gs::Any::AsFloat
float AsFloat() const
Definition: types.h:636
gs::LabelKey
Definition: types.h:276
gs::AnyConverter< double >::type
static PropertyType type()
Definition: types.h:1191
gs::StringPtr::operator*
std::string_view operator*() const
Definition: types.h:349
gs::Any::AsDay
const Day & AsDay() const
Definition: types.h:655
gs::ConvertAny< LabelKey >::to
static void to(const Any &value, LabelKey &out)
Definition: types.h:854
gs::Any::AsString
const std::string & AsString() const
Definition: types.h:601
gs::StorageStrategy::kNone
@ kNone
gs::Any::Any
Any(const std::vector< Any > &vec)
Definition: types.h:412
gs::RecordView::table
const Table * table
Definition: types.h:296
gs::AnyConverter< bool >::to_any
static Any to_any(const bool &value)
Definition: types.h:940
gs::DT_UNSIGNED_INT64
static constexpr const char * DT_UNSIGNED_INT64
Definition: types.h:49
std::operator<<
ostream & operator<<(ostream &os, const gs::BulkLoadMethod &method)
Definition: loading_config.h:234
gs::Day::Day
Day()=default
gs::ConvertAny< uint64_t >::to
static void to(const Any &value, uint64_t &out)
Definition: types.h:838
gs::impl::PropertyTypeImpl::kBool
@ kBool
gs::AnyConverter< float >::from_any_value
static const float & from_any_value(const AnyValue &value)
Definition: types.h:1225
gs::AnyConverter< Record >::type
static PropertyType type()
Definition: types.h:1271
gs::AnyConverter< uint32_t >::to_any
static Any to_any(const uint32_t &value)
Definition: types.h:1005
gs::Day::hour
int hour() const
Definition: types.cc:549
gs::LabelKey::LabelKey
LabelKey()=default
gs::DT_UNSIGNED_INT16
static constexpr const char * DT_UNSIGNED_INT16
Definition: types.h:45
gs::DayValue::hour
uint32_t hour
Definition: types.h:218
gs::impl::PropertyTypeImpl::kStringView
@ kStringView
gs::Any::set_u64
void set_u64(uint64_t v)
Definition: types.h:487
gs::AnyConverter< uint64_t >::from_any
static const uint64_t & from_any(const Any &value)
Definition: types.h:1050
gs::Day::month
int month() const
Definition: types.cc:545
gs::Day::value
union gs::Day::@4 value
gs::impl::PropertyTypeImpl::kInt32
@ kInt32
gs::StringPtr::~StringPtr
~StringPtr()
Definition: types.h:343
gs::PropertyType::PropertyType
constexpr PropertyType(impl::PropertyTypeImpl type)
Definition: types.h:102
gs::DT_SIGNED_INT32
static constexpr const char * DT_SIGNED_INT32
Definition: types.h:46
gs::AnyConverter< int64_t >::from_any_value
static const int64_t & from_any_value(const AnyValue &value)
Definition: types.h:1035
gs::Any::Any
Any(const T &val)
Definition: types.h:423
gs::Any::set_u16
void set_u16(uint16_t v)
Definition: types.h:542
gs::GlobalId::label_id_offset
static constexpr int32_t label_id_offset
Definition: types.h:167
gs::impl::PropertyTypeImpl::kVarChar
@ kVarChar
gs::AnyValue::ui
uint32_t ui
Definition: types.h:360
gs::GlobalId::get_label_id
static label_id_t get_label_id(gid_t gid)
Definition: types.cc:501
gs::PropertyType::kInt64
static const PropertyType kInt64
Definition: types.h:140
gs::Any::operator<
bool operator<(const Any &other) const
Definition: types.h:741
gs::Any::set_float
void set_float(float v)
Definition: types.h:527
gs::Any::Any
Any(Any &&other)
Definition: types.h:397
gs::DT_UNSIGNED_INT8
static constexpr const char * DT_UNSIGNED_INT8
Definition: types.h:44
gs::AnyConverter< uint64_t >::from_any_value
static const uint64_t & from_any_value(const AnyValue &value)
Definition: types.h:1055
gs::AnyConverter< uint16_t >::type
static PropertyType type()
Definition: types.h:969
gs::AnyConverter< Day >::from_any_value
static const Day & from_any_value(const AnyValue &value)
Definition: types.h:1126
gs::AnyConverter< RecordView >::type
static PropertyType type()
Definition: types.h:1251
gs::AnyValue::~AnyValue
~AnyValue()
Definition: types.h:356
gs::DT_BOOL
static constexpr const char * DT_BOOL
Definition: types.h:50
gs::PropertyType::Day
static PropertyType Day()
Definition: types.cc:311
gs::operator==
bool operator==(const GlobalId &lhs, const GlobalId &rhs)
Definition: types.h:185
std
Definition: loading_config.h:232
gs::Any::set_record
void set_record(Record v)
Definition: types.h:552
gs::GlobalId::label_id
label_id_t label_id() const
Definition: types.cc:517
gs::Day::from_timestamp
void from_timestamp(int64_t ts)
Definition: types.h:244
gs::AnyConverter< LabelKey >::type
static PropertyType type()
Definition: types.h:1230
gs::impl::PropertyTypeImpl::kVertexGlobalId
@ kVertexGlobalId
gs::AnyConverter< bool >::from_any_value
static const bool & from_any_value(const AnyValue &value)
Definition: types.h:950
gs::AnyValue::d
Date d
Definition: types.h:367
gs::AnyValue::s
std::string_view s
Definition: types.h:369
gs::AnyConverter< Day >::type
static PropertyType type()
Definition: types.h:1106
gs::AnyValue::u16
uint16_t u16
Definition: types.h:372
gs::AnyValue::AnyValue
AnyValue()
Definition: types.h:355
gs::PropertyType::Double
static PropertyType Double()
Definition: types.cc:305
gs::Any::set_string_view
void set_string_view(std::string_view v)
Definition: types.h:517
gs::PropertyType::kRecord
static const PropertyType kRecord
Definition: types.h:150
boost::hash_value
std::size_t hash_value(const grape::EmptyType &value)
Definition: types.h:1318
gs::StringPtr::StringPtr
StringPtr(const StringPtr &other)
Definition: types.h:321
gs::ConvertAny< GlobalId >::to
static void to(const Any &value, GlobalId &out)
Definition: types.h:846
gs::DT_DAY
static constexpr const char * DT_DAY
Definition: types.h:56
std::hash< gs::GlobalId >::operator()
size_t operator()(const gs::GlobalId &value) const
Definition: types.h:1382
gs::DT_SIGNED_INT64
static constexpr const char * DT_SIGNED_INT64
Definition: types.h:48
gs::impl::PropertyTypeImpl::kUInt64
@ kUInt64
gs::Day::to_string
std::string to_string() const
Definition: types.cc:533
gs::Record::operator=
Record & operator=(const Record &other)
Definition: types.cc:110
gs::PropertyType::kBool
static const PropertyType kBool
Definition: types.h:134
gs::Record::Record
Record()
Definition: types.h:301
gs::RecordView::size
size_t size() const
Definition: types.cc:87
gs::Any::set_record_view
void set_record_view(RecordView v)
Definition: types.h:547
grape::operator!=
bool operator!=(const EmptyType &a, const EmptyType &b)
Definition: types.h:1392
gs::ConvertAny
Definition: types.h:798
gs::AnyConverter
Definition: types.h:381
gs::AnyConverter< uint8_t >::from_any
static const uint8_t & from_any(const Any &value)
Definition: types.h:961
gs::AnyValue::u8
uint8_t u8
Definition: types.h:371
gs::PropertyType::Record
static PropertyType Record()
Definition: types.cc:339
gs::Any::set_day
void set_day(Day v)
Definition: types.h:512
gs::Any::type
PropertyType type
Definition: types.h:793
gs::DayValue::day
uint32_t day
Definition: types.h:217
gs::AnyValue::f
float f
Definition: types.h:361
gs::impl::PropertyTypeImpl::kString
@ kString
gs::StringPtr::operator=
StringPtr & operator=(const StringPtr &other)
Definition: types.h:329
gs::Any::set_date
void set_date(Date v)
Definition: types.h:507
gs::Day::integer
uint32_t integer
Definition: types.h:272
gs::AnyConverter< Day >::to_any
static Any to_any(int64_t value)
Definition: types.h:1114
gs::AnyConverter< Record >::from_any_value
static const Record & from_any_value(const AnyValue &value)
Definition: types.h:1284
gs::PropertyType::IsVarchar
bool IsVarchar() const
Definition: types.cc:225
gs::PropertyType::operator==
bool operator==(const PropertyType &other) const
Definition: types.cc:198
gs::AnyValue::ul
uint64_t ul
Definition: types.h:363
gs::Day::from_u32
void from_u32(uint32_t val)
Definition: types.cc:541
gs::GlobalId::GlobalId
GlobalId()
Definition: types.cc:509
gs::config_parsing::PrimitivePropertyTypeToString
std::string PrimitivePropertyTypeToString(PropertyType type)
Definition: types.cc:25
gs::PropertyType::UInt8
static PropertyType UInt8()
Definition: types.cc:284
gs::GlobalId::label_id_t
uint8_t label_id_t
Definition: types.h:164
gs::ConvertAny< std::string_view >::to
static void to(const Any &value, std::string_view &out)
Definition: types.h:893
gs::Any::~Any
~Any()
Definition: types.h:455
gs::impl::PropertyTypeImpl::kStringMap
@ kStringMap
gs::AnyConverter< RecordView >::from_any
static const RecordView & from_any(const Any &value)
Definition: types.h:1259
gs::PropertyType::additional_type_info
impl::AdditionalTypeInfo additional_type_info
Definition: types.h:98
gs::AnyConverter< uint8_t >::to_any
static Any to_any(const uint8_t &value)
Definition: types.h:956
gs::PropertyType::Int32
static PropertyType Int32()
Definition: types.cc:290
gs::PropertyType
Definition: types.h:95
gs::impl::PropertyTypeImpl::kUInt16
@ kUInt16
gs::RecordView
Definition: types.h:285
gs::RecordView::RecordView
RecordView(size_t offset, const Table *table)
Definition: types.h:287
gs::Any::operator=
Any & operator=(const Any &other)
Definition: types.h:436
gs::impl::AdditionalTypeInfo::max_length
uint16_t max_length
Definition: types.h:91
gs::StringPtr::ptr
std::string * ptr
Definition: types.h:352
gs::Day::year
int year() const
Definition: types.cc:543
gs::AnyValue::label_key
LabelKey label_key
Definition: types.h:365
gs::GlobalId::get_vid
static vid_t get_vid(gid_t gid)
Definition: types.cc:505
YAML::convert< gs::PropertyType >::encode
static Node encode(const gs::PropertyType &type)
Definition: types.h:1450
gs::AnyConverter< float >::to_any
static Any to_any(const float &value)
Definition: types.h:1214
gs::Any::to_string
std::string to_string() const
Definition: types.h:560
gs::PropertyType::kStringMap
static const PropertyType kStringMap
Definition: types.h:146
gs::PropertyType::RecordView
static PropertyType RecordView()
Definition: types.cc:335
gs::PropertyType::kVertexGlobalId
static const PropertyType kVertexGlobalId
Definition: types.h:147
gs::PropertyType::UInt16
static PropertyType UInt16()
Definition: types.cc:287
gs::AnyConverter< int64_t >::to_any
static Any to_any(const int64_t &value)
Definition: types.h:1024
gs::StringPtr::StringPtr
StringPtr(StringPtr &&other)
Definition: types.h:328
gs::PropertyType::Float
static PropertyType Float()
Definition: types.cc:296
gs::operator>>
std::istream & operator>>(std::istream &is, LoadingStatus &status)
Definition: basic_fragment_loader.cc:35
gs::AnyValue::day
Day day
Definition: types.h:368
YAML::convert< gs::PropertyType >::decode
static bool decode(const Node &config, gs::PropertyType &property_type)
Definition: types.h:1399
gs::AnyConverter< uint16_t >::from_any
static const uint16_t & from_any(const Any &value)
Definition: types.h:975
gs::AnyConverter< uint8_t >::type
static PropertyType type()
Definition: types.h:955
gs::PropertyType::kInt32
static const PropertyType kInt32
Definition: types.h:137
gs::StorageStrategy::kMem
@ kMem
gs::Any::AsStringView
std::string_view AsStringView() const
Definition: types.h:641
gs::AnyConverter< uint32_t >::type
static PropertyType type()
Definition: types.h:1003
gs::Day::~Day
~Day()=default
gs::AnyConverter< std::string_view >::type
static PropertyType type()
Definition: types.h:1131
gs::AnyValue::vertex_gid
GlobalId vertex_gid
Definition: types.h:364
gs::Any::AsRecordView
const RecordView & AsRecordView() const
Definition: types.h:670
gs::PropertyType::kUInt16
static const PropertyType kUInt16
Definition: types.h:136
gs::RecordView::get_field
T get_field(int col_id) const
Definition: types.h:1290
gs::LabelKey::LabelKey
LabelKey(label_data_type id)
Definition: types.h:280
gs::AnyConverter< uint32_t >::from_any_value
static const uint32_t & from_any_value(const AnyValue &value)
Definition: types.h:1016
gs::AnyConverter< GlobalId >::to_any
static Any to_any(const GlobalId &value)
Definition: types.h:1064
gs::Record::size
size_t size() const
Definition: types.h:309
gs::Any::AsDate
const Date & AsDate() const
Definition: types.h:650