Use constexpr for folly::dynamic::TypeInfo static fields
[folly.git] / folly / dynamic-inl.h
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef FOLLY_DYNAMIC_INL_H_
18 #define FOLLY_DYNAMIC_INL_H_
19
20 #include <functional>
21 #include <boost/iterator/iterator_adaptor.hpp>
22 #include <boost/iterator/iterator_facade.hpp>
23 #include <folly/Likely.h>
24 #include <folly/Conv.h>
25 #include <folly/Format.h>
26
27 //////////////////////////////////////////////////////////////////////
28
29 namespace std {
30
31 template<>
32 struct hash< ::folly::dynamic> {
33   size_t operator()(::folly::dynamic const& d) const {
34     return d.hash();
35   }
36 };
37
38 }
39
40 //////////////////////////////////////////////////////////////////////
41
42 // This is a higher-order preprocessor macro to aid going from runtime
43 // types to the compile time type system.
44 #define FB_DYNAMIC_APPLY(type, apply) do {         \
45   switch ((type)) {                             \
46   case NULLT:   apply(void*);          break;   \
47   case ARRAY:   apply(Array);          break;   \
48   case BOOL:    apply(bool);           break;   \
49   case DOUBLE:  apply(double);         break;   \
50   case INT64:   apply(int64_t);        break;   \
51   case OBJECT:  apply(ObjectImpl);     break;   \
52   case STRING:  apply(fbstring);       break;   \
53   default:      CHECK(0); abort();              \
54   }                                             \
55 } while (0)
56
57 //////////////////////////////////////////////////////////////////////
58
59 namespace folly {
60
61 struct TypeError : std::runtime_error {
62   explicit TypeError(const std::string& expected, dynamic::Type actual);
63   explicit TypeError(const std::string& expected,
64     dynamic::Type actual1, dynamic::Type actual2);
65   ~TypeError();
66 };
67
68
69 //////////////////////////////////////////////////////////////////////
70
71 namespace detail {
72
73   // This helper is used in destroy() to be able to run destructors on
74   // types like "int64_t" without a compiler error.
75   struct Destroy {
76     template<class T> static void destroy(T* t) { t->~T(); }
77   };
78
79   /*
80    * The enable_if junk here is necessary to avoid ambiguous
81    * conversions relating to bool and double when you implicitly
82    * convert an int or long to a dynamic.
83    */
84   template<class T, class Enable = void> struct ConversionHelper;
85   template<class T>
86   struct ConversionHelper<
87     T,
88     typename std::enable_if<
89       std::is_integral<T>::value && !std::is_same<T,bool>::value
90     >::type
91   > {
92     typedef int64_t type;
93   };
94   template<class T>
95   struct ConversionHelper<
96     T,
97     typename std::enable_if<
98       (!std::is_integral<T>::value || std::is_same<T,bool>::value) &&
99       !std::is_same<T,std::nullptr_t>::value
100     >::type
101   > {
102     typedef T type;
103   };
104   template<class T>
105   struct ConversionHelper<
106     T,
107     typename std::enable_if<
108       std::is_same<T,std::nullptr_t>::value
109     >::type
110   > {
111     typedef void* type;
112   };
113
114   /*
115    * Helper for implementing numeric conversions in operators on
116    * numbers.  Just promotes to double when one of the arguments is
117    * double, or throws if either is not a numeric type.
118    */
119   template<template<class> class Op>
120   dynamic numericOp(dynamic const& a, dynamic const& b) {
121     if (!a.isNumber() || !b.isNumber()) {
122       throw TypeError("numeric", a.type(), b.type());
123     }
124     if (a.type() != b.type()) {
125       auto& integ  = a.isInt() ? a : b;
126       auto& nonint = a.isInt() ? b : a;
127       return Op<double>()(to<double>(integ.asInt()), nonint.asDouble());
128     }
129     if (a.isDouble()) {
130       return Op<double>()(a.asDouble(), b.asDouble());
131     }
132     return Op<int64_t>()(a.asInt(), b.asInt());
133   }
134
135 }
136
137 //////////////////////////////////////////////////////////////////////
138
139 /*
140  * We're doing this instead of a simple member typedef to avoid the
141  * undefined behavior of parameterizing std::unordered_map<> with an
142  * incomplete type.
143  *
144  * Note: Later we may add separate order tracking here (a multi-index
145  * type of thing.)
146  */
147 struct dynamic::ObjectImpl : std::unordered_map<dynamic, dynamic> {};
148
149 //////////////////////////////////////////////////////////////////////
150
151 // Helper object for creating objects conveniently.  See object and
152 // the dynamic::dynamic(ObjectMaker&&) ctor.
153 struct dynamic::ObjectMaker {
154   friend struct dynamic;
155
156   explicit ObjectMaker() : val_(dynamic::object) {}
157   explicit ObjectMaker(dynamic const& key, dynamic val)
158     : val_(dynamic::object)
159   {
160     val_.insert(key, std::move(val));
161   }
162   explicit ObjectMaker(dynamic&& key, dynamic val)
163     : val_(dynamic::object)
164   {
165     val_.insert(std::move(key), std::move(val));
166   }
167
168   // Make sure no one tries to save one of these into an lvalue with
169   // auto or anything like that.
170   ObjectMaker(ObjectMaker&&) = default;
171   ObjectMaker(ObjectMaker const&) = delete;
172   ObjectMaker& operator=(ObjectMaker const&) = delete;
173   ObjectMaker& operator=(ObjectMaker&&) = delete;
174
175   // These return rvalue-references instead of lvalue-references to allow
176   // constructs like this to moved instead of copied:
177   //  dynamic a = dynamic::object("a", "b")("c", "d")
178   ObjectMaker&& operator()(dynamic const& key, dynamic val) {
179     val_.insert(key, std::move(val));
180     return std::move(*this);
181   }
182
183   ObjectMaker&& operator()(dynamic&& key, dynamic val) {
184     val_.insert(std::move(key), std::move(val));
185     return std::move(*this);
186   }
187
188 private:
189   dynamic val_;
190 };
191
192 // This looks like a case for perfect forwarding, but our use of
193 // std::initializer_list for constructing dynamic arrays makes it less
194 // functional than doing this manually.
195 inline dynamic::ObjectMaker dynamic::object() { return ObjectMaker(); }
196 inline dynamic::ObjectMaker dynamic::object(dynamic&& a, dynamic&& b) {
197   return ObjectMaker(std::move(a), std::move(b));
198 }
199 inline dynamic::ObjectMaker dynamic::object(dynamic const& a, dynamic&& b) {
200   return ObjectMaker(a, std::move(b));
201 }
202 inline dynamic::ObjectMaker dynamic::object(dynamic&& a, dynamic const& b) {
203   return ObjectMaker(std::move(a), b);
204 }
205 inline dynamic::ObjectMaker
206 dynamic::object(dynamic const& a, dynamic const& b) {
207   return ObjectMaker(a, b);
208 }
209
210 //////////////////////////////////////////////////////////////////////
211
212 struct dynamic::const_item_iterator
213   : boost::iterator_adaptor<dynamic::const_item_iterator,
214                             dynamic::ObjectImpl::const_iterator> {
215   /* implicit */ const_item_iterator(base_type b) : iterator_adaptor_(b) { }
216
217  private:
218   friend class boost::iterator_core_access;
219 };
220
221 struct dynamic::const_key_iterator
222   : boost::iterator_adaptor<dynamic::const_key_iterator,
223                             dynamic::ObjectImpl::const_iterator,
224                             dynamic const> {
225   /* implicit */ const_key_iterator(base_type b) : iterator_adaptor_(b) { }
226
227  private:
228   dynamic const& dereference() const {
229     return base_reference()->first;
230   }
231   friend class boost::iterator_core_access;
232 };
233
234 struct dynamic::const_value_iterator
235   : boost::iterator_adaptor<dynamic::const_value_iterator,
236                             dynamic::ObjectImpl::const_iterator,
237                             dynamic const> {
238   /* implicit */ const_value_iterator(base_type b) : iterator_adaptor_(b) { }
239
240  private:
241   dynamic const& dereference() const {
242     return base_reference()->second;
243   }
244   friend class boost::iterator_core_access;
245 };
246
247 //////////////////////////////////////////////////////////////////////
248
249 inline dynamic::dynamic(ObjectMaker (*)())
250   : type_(OBJECT)
251 {
252   new (getAddress<ObjectImpl>()) ObjectImpl();
253 }
254
255 inline dynamic::dynamic(StringPiece s)
256   : type_(STRING)
257 {
258   new (&u_.string) fbstring(s.data(), s.size());
259 }
260
261 inline dynamic::dynamic(char const* s)
262   : type_(STRING)
263 {
264   new (&u_.string) fbstring(s);
265 }
266
267 inline dynamic::dynamic(std::string const& s)
268   : type_(STRING)
269 {
270   new (&u_.string) fbstring(s);
271 }
272
273 inline dynamic::dynamic(fbstring const& s)
274   : type_(STRING)
275 {
276   new (&u_.string) fbstring(s);
277 }
278
279 inline dynamic::dynamic(fbstring&& s)
280   : type_(STRING)
281 {
282   new (&u_.string) fbstring(std::move(s));
283 }
284
285 inline dynamic::dynamic(std::initializer_list<dynamic> il)
286   : type_(ARRAY)
287 {
288   new (&u_.array) Array(il.begin(), il.end());
289 }
290
291 inline dynamic::dynamic(ObjectMaker&& maker)
292   : type_(OBJECT)
293 {
294   new (getAddress<ObjectImpl>())
295     ObjectImpl(std::move(*maker.val_.getAddress<ObjectImpl>()));
296 }
297
298 inline dynamic::dynamic(dynamic const& o)
299   : type_(NULLT)
300 {
301   *this = o;
302 }
303
304 inline dynamic::dynamic(dynamic&& o) noexcept
305   : type_(NULLT)
306 {
307   *this = std::move(o);
308 }
309
310 inline dynamic::~dynamic() noexcept { destroy(); }
311
312 template<class T>
313 dynamic::dynamic(T t) {
314   typedef typename detail::ConversionHelper<T>::type U;
315   type_ = TypeInfo<U>::type;
316   new (getAddress<U>()) U(std::move(t));
317 }
318
319 template<class Iterator>
320 dynamic::dynamic(Iterator first, Iterator last)
321   : type_(ARRAY)
322 {
323   new (&u_.array) Array(first, last);
324 }
325
326 //////////////////////////////////////////////////////////////////////
327
328 inline dynamic::const_iterator dynamic::begin() const {
329   return get<Array>().begin();
330 }
331 inline dynamic::const_iterator dynamic::end() const {
332   return get<Array>().end();
333 }
334
335 template <class It>
336 struct dynamic::IterableProxy {
337   typedef It const_iterator;
338   typedef typename It::value_type value_type;
339
340   /* implicit */ IterableProxy(const dynamic::ObjectImpl* o) : o_(o) { }
341
342   It begin() const {
343     return o_->begin();
344   }
345
346   It end() const {
347     return o_->end();
348   }
349
350  private:
351   const dynamic::ObjectImpl* o_;
352 };
353
354 inline dynamic::IterableProxy<dynamic::const_key_iterator> dynamic::keys()
355   const {
356   return &(get<ObjectImpl>());
357 }
358
359 inline dynamic::IterableProxy<dynamic::const_value_iterator> dynamic::values()
360   const {
361   return &(get<ObjectImpl>());
362 }
363
364 inline dynamic::IterableProxy<dynamic::const_item_iterator> dynamic::items()
365   const {
366   return &(get<ObjectImpl>());
367 }
368
369 inline bool dynamic::isString() const { return get_nothrow<fbstring>(); }
370 inline bool dynamic::isObject() const { return get_nothrow<ObjectImpl>(); }
371 inline bool dynamic::isBool()   const { return get_nothrow<bool>(); }
372 inline bool dynamic::isArray()  const { return get_nothrow<Array>(); }
373 inline bool dynamic::isDouble() const { return get_nothrow<double>(); }
374 inline bool dynamic::isInt()    const { return get_nothrow<int64_t>(); }
375 inline bool dynamic::isNull()   const { return get_nothrow<void*>(); }
376 inline bool dynamic::isNumber() const { return isInt() || isDouble(); }
377
378 inline dynamic::Type dynamic::type() const {
379   return type_;
380 }
381
382 inline fbstring dynamic::asString() const { return asImpl<fbstring>(); }
383 inline double   dynamic::asDouble() const { return asImpl<double>(); }
384 inline int64_t  dynamic::asInt()    const { return asImpl<int64_t>(); }
385 inline bool     dynamic::asBool()   const { return asImpl<bool>(); }
386
387 inline const fbstring& dynamic::getString() const& { return get<fbstring>(); }
388 inline double          dynamic::getDouble() const& { return get<double>(); }
389 inline int64_t         dynamic::getInt()    const& { return get<int64_t>(); }
390 inline bool            dynamic::getBool()   const& { return get<bool>(); }
391
392 inline fbstring& dynamic::getString() & { return get<fbstring>(); }
393 inline double&   dynamic::getDouble() & { return get<double>(); }
394 inline int64_t&  dynamic::getInt()    & { return get<int64_t>(); }
395 inline bool&     dynamic::getBool()   & { return get<bool>(); }
396
397 inline fbstring dynamic::getString() && { return std::move(get<fbstring>()); }
398 inline double   dynamic::getDouble() && { return get<double>(); }
399 inline int64_t  dynamic::getInt()    && { return get<int64_t>(); }
400 inline bool     dynamic::getBool()   && { return get<bool>(); }
401
402 inline const char* dynamic::data()  const& { return get<fbstring>().data();  }
403 inline const char* dynamic::c_str() const& { return get<fbstring>().c_str(); }
404 inline StringPiece dynamic::stringPiece() const { return get<fbstring>(); }
405
406 template<class T>
407 struct dynamic::CompareOp {
408   static bool comp(T const& a, T const& b) { return a < b; }
409 };
410 template<>
411 struct dynamic::CompareOp<dynamic::ObjectImpl> {
412   static bool comp(ObjectImpl const&, ObjectImpl const&) {
413     // This code never executes; it is just here for the compiler.
414     return false;
415   }
416 };
417
418 inline dynamic& dynamic::operator+=(dynamic const& o) {
419   if (type() == STRING && o.type() == STRING) {
420     *getAddress<fbstring>() += *o.getAddress<fbstring>();
421     return *this;
422   }
423   *this = detail::numericOp<std::plus>(*this, o);
424   return *this;
425 }
426
427 inline dynamic& dynamic::operator-=(dynamic const& o) {
428   *this = detail::numericOp<std::minus>(*this, o);
429   return *this;
430 }
431
432 inline dynamic& dynamic::operator*=(dynamic const& o) {
433   *this = detail::numericOp<std::multiplies>(*this, o);
434   return *this;
435 }
436
437 inline dynamic& dynamic::operator/=(dynamic const& o) {
438   *this = detail::numericOp<std::divides>(*this, o);
439   return *this;
440 }
441
442 #define FB_DYNAMIC_INTEGER_OP(op)                           \
443   inline dynamic& dynamic::operator op(dynamic const& o) {  \
444     if (!isInt() || !o.isInt()) {                           \
445       throw TypeError("int64", type(), o.type());           \
446     }                                                       \
447     *getAddress<int64_t>() op o.asInt();                    \
448     return *this;                                           \
449   }
450
451 FB_DYNAMIC_INTEGER_OP(%=)
452 FB_DYNAMIC_INTEGER_OP(|=)
453 FB_DYNAMIC_INTEGER_OP(&=)
454 FB_DYNAMIC_INTEGER_OP(^=)
455
456 #undef FB_DYNAMIC_INTEGER_OP
457
458 inline dynamic& dynamic::operator++() {
459   ++get<int64_t>();
460   return *this;
461 }
462
463 inline dynamic& dynamic::operator--() {
464   --get<int64_t>();
465   return *this;
466 }
467
468 inline dynamic const& dynamic::operator[](dynamic const& idx) const& {
469   return at(idx);
470 }
471
472 inline dynamic dynamic::operator[](dynamic const& idx) && {
473   return std::move((*this)[idx]);
474 }
475
476 template<class K, class V> inline dynamic& dynamic::setDefault(K&& k, V&& v) {
477   auto& obj = get<ObjectImpl>();
478   return obj.insert(std::make_pair(std::forward<K>(k),
479                                    std::forward<V>(v))).first->second;
480 }
481
482 inline dynamic* dynamic::get_ptr(dynamic const& idx) & {
483   return const_cast<dynamic*>(const_cast<dynamic const*>(this)->get_ptr(idx));
484 }
485
486 inline dynamic& dynamic::at(dynamic const& idx) & {
487   return const_cast<dynamic&>(const_cast<dynamic const*>(this)->at(idx));
488 }
489
490 inline dynamic dynamic::at(dynamic const& idx) && {
491   return std::move(at(idx));
492 }
493
494 inline bool dynamic::empty() const {
495   if (isNull()) {
496     return true;
497   }
498   return !size();
499 }
500
501 inline std::size_t dynamic::count(dynamic const& key) const {
502   return find(key) != items().end();
503 }
504
505 inline dynamic::const_item_iterator dynamic::find(dynamic const& key) const {
506   return get<ObjectImpl>().find(key);
507 }
508
509 template<class K, class V> inline void dynamic::insert(K&& key, V&& val) {
510   auto& obj = get<ObjectImpl>();
511   auto rv = obj.insert({ std::forward<K>(key), nullptr });
512   rv.first->second = std::forward<V>(val);
513 }
514
515 inline void dynamic::update(const dynamic& mergeObj) {
516   if (!isObject() || !mergeObj.isObject()) {
517     throw TypeError("object", type(), mergeObj.type());
518   }
519
520   for (const auto& pair : mergeObj.items()) {
521     (*this)[pair.first] = pair.second;
522   }
523 }
524
525 inline void dynamic::update_missing(const dynamic& mergeObj1) {
526   if (!isObject() || !mergeObj1.isObject()) {
527     throw TypeError("object", type(), mergeObj1.type());
528   }
529
530   // Only add if not already there
531   for (const auto& pair : mergeObj1.items()) {
532     if ((*this).find(pair.first) == (*this).items().end()) {
533       (*this)[pair.first] = pair.second;
534     }
535   }
536 }
537
538 inline dynamic dynamic::merge(
539     const dynamic& mergeObj1,
540     const dynamic& mergeObj2) {
541
542   // No checks on type needed here because they are done in update_missing
543   // Note that we do update_missing here instead of update() because
544   // it will prevent the extra writes that would occur with update()
545   auto ret = mergeObj2;
546   ret.update_missing(mergeObj1);
547   return ret;
548 }
549
550 inline std::size_t dynamic::erase(dynamic const& key) {
551   auto& obj = get<ObjectImpl>();
552   return obj.erase(key);
553 }
554
555 inline dynamic::const_iterator dynamic::erase(const_iterator it) {
556   auto& arr = get<Array>();
557   // std::vector doesn't have an erase method that works on const iterators,
558   // even though the standard says it should, so this hack converts to a
559   // non-const iterator before calling erase.
560   return get<Array>().erase(arr.begin() + (it - arr.begin()));
561 }
562
563 inline dynamic::const_key_iterator dynamic::erase(const_key_iterator it) {
564   return const_key_iterator(get<ObjectImpl>().erase(it.base()));
565 }
566
567 inline dynamic::const_key_iterator dynamic::erase(const_key_iterator first,
568                                                   const_key_iterator last) {
569   return const_key_iterator(get<ObjectImpl>().erase(first.base(),
570                                                     last.base()));
571 }
572
573 inline dynamic::const_value_iterator dynamic::erase(const_value_iterator it) {
574   return const_value_iterator(get<ObjectImpl>().erase(it.base()));
575 }
576
577 inline dynamic::const_value_iterator dynamic::erase(const_value_iterator first,
578                                                     const_value_iterator last) {
579   return const_value_iterator(get<ObjectImpl>().erase(first.base(),
580                                                       last.base()));
581 }
582
583 inline dynamic::const_item_iterator dynamic::erase(const_item_iterator it) {
584   return const_item_iterator(get<ObjectImpl>().erase(it.base()));
585 }
586
587 inline dynamic::const_item_iterator dynamic::erase(const_item_iterator first,
588                                                    const_item_iterator last) {
589   return const_item_iterator(get<ObjectImpl>().erase(first.base(),
590                                                      last.base()));
591 }
592
593 inline void dynamic::resize(std::size_t sz, dynamic const& c) {
594   auto& array = get<Array>();
595   array.resize(sz, c);
596 }
597
598 inline void dynamic::push_back(dynamic const& v) {
599   auto& array = get<Array>();
600   array.push_back(v);
601 }
602
603 inline void dynamic::push_back(dynamic&& v) {
604   auto& array = get<Array>();
605   array.push_back(std::move(v));
606 }
607
608 inline void dynamic::pop_back() {
609   auto& array = get<Array>();
610   array.pop_back();
611 }
612
613 //////////////////////////////////////////////////////////////////////
614
615 #define FOLLY_DYNAMIC_DEC_TYPEINFO(T, str, val) \
616   template <> struct dynamic::TypeInfo<T> { \
617     static constexpr const char* name = str; \
618     static constexpr dynamic::Type type = val; \
619   }; \
620   //
621
622 FOLLY_DYNAMIC_DEC_TYPEINFO(void*,               "null",    dynamic::NULLT)
623 FOLLY_DYNAMIC_DEC_TYPEINFO(bool,                "boolean", dynamic::BOOL)
624 FOLLY_DYNAMIC_DEC_TYPEINFO(fbstring,            "string",  dynamic::STRING)
625 FOLLY_DYNAMIC_DEC_TYPEINFO(dynamic::Array,      "array",   dynamic::ARRAY)
626 FOLLY_DYNAMIC_DEC_TYPEINFO(double,              "double",  dynamic::DOUBLE)
627 FOLLY_DYNAMIC_DEC_TYPEINFO(int64_t,             "int64",   dynamic::INT64)
628 FOLLY_DYNAMIC_DEC_TYPEINFO(dynamic::ObjectImpl, "object",  dynamic::OBJECT)
629
630 #undef FOLLY_DYNAMIC_DEC_TYPEINFO
631
632 template<class T>
633 T dynamic::asImpl() const {
634   switch (type()) {
635   case INT64:    return to<T>(*get_nothrow<int64_t>());
636   case DOUBLE:   return to<T>(*get_nothrow<double>());
637   case BOOL:     return to<T>(*get_nothrow<bool>());
638   case STRING:   return to<T>(*get_nothrow<fbstring>());
639   default:
640     throw TypeError("int/double/bool/string", type());
641   }
642 }
643
644 // Return a T* to our type, or null if we're not that type.
645 template<class T>
646 T* dynamic::get_nothrow() & noexcept {
647   if (type_ != TypeInfo<T>::type) {
648     return nullptr;
649   }
650   return getAddress<T>();
651 }
652
653 template<class T>
654 T const* dynamic::get_nothrow() const& noexcept {
655   return const_cast<dynamic*>(this)->get_nothrow<T>();
656 }
657
658 // Return T* for where we can put a T, without type checking.  (Memory
659 // might be uninitialized, even.)
660 template<class T>
661 T* dynamic::getAddress() noexcept {
662   return GetAddrImpl<T>::get(u_);
663 }
664
665 template<class T>
666 T const* dynamic::getAddress() const noexcept {
667   return const_cast<dynamic*>(this)->getAddress<T>();
668 }
669
670 template<class T> struct dynamic::GetAddrImpl {};
671 template<> struct dynamic::GetAddrImpl<void*> {
672   static void** get(Data& d) noexcept { return &d.nul; }
673 };
674 template<> struct dynamic::GetAddrImpl<dynamic::Array> {
675   static Array* get(Data& d) noexcept { return &d.array; }
676 };
677 template<> struct dynamic::GetAddrImpl<bool> {
678   static bool* get(Data& d) noexcept { return &d.boolean; }
679 };
680 template<> struct dynamic::GetAddrImpl<int64_t> {
681   static int64_t* get(Data& d) noexcept { return &d.integer; }
682 };
683 template<> struct dynamic::GetAddrImpl<double> {
684   static double* get(Data& d) noexcept { return &d.doubl; }
685 };
686 template<> struct dynamic::GetAddrImpl<fbstring> {
687   static fbstring* get(Data& d) noexcept { return &d.string; }
688 };
689 template<> struct dynamic::GetAddrImpl<dynamic::ObjectImpl> {
690   static_assert(sizeof(ObjectImpl) <= sizeof(Data::objectBuffer),
691     "In your implementation, std::unordered_map<> apparently takes different"
692     " amount of space depending on its template parameters.  This is "
693     "weird.  Make objectBuffer bigger if you want to compile dynamic.");
694
695   static ObjectImpl* get(Data& d) noexcept {
696     void* data = &d.objectBuffer;
697     return static_cast<ObjectImpl*>(data);
698   }
699 };
700
701 template<class T>
702 T& dynamic::get() {
703   if (auto* p = get_nothrow<T>()) {
704     return *p;
705   }
706   throw TypeError(TypeInfo<T>::name, type());
707 }
708
709 template<class T>
710 T const& dynamic::get() const {
711   return const_cast<dynamic*>(this)->get<T>();
712 }
713
714 //////////////////////////////////////////////////////////////////////
715
716 /*
717  * Helper for implementing operator<<.  Throws if the type shouldn't
718  * support it.
719  */
720 template<class T>
721 struct dynamic::PrintImpl {
722   static void print(dynamic const&, std::ostream& out, T const& t) {
723     out << t;
724   }
725 };
726 template<>
727 struct dynamic::PrintImpl<dynamic::ObjectImpl> {
728   static void print(dynamic const& d,
729                     std::ostream& out,
730                     dynamic::ObjectImpl const&) {
731     d.print_as_pseudo_json(out);
732   }
733 };
734 template<>
735 struct dynamic::PrintImpl<dynamic::Array> {
736   static void print(dynamic const& d,
737                     std::ostream& out,
738                     dynamic::Array const&) {
739     d.print_as_pseudo_json(out);
740   }
741 };
742
743 inline void dynamic::print(std::ostream& out) const {
744 #define FB_X(T) PrintImpl<T>::print(*this, out, *getAddress<T>())
745   FB_DYNAMIC_APPLY(type_, FB_X);
746 #undef FB_X
747 }
748
749 inline std::ostream& operator<<(std::ostream& out, dynamic const& d) {
750   d.print(out);
751   return out;
752 }
753
754 //////////////////////////////////////////////////////////////////////
755
756 // Secialization of FormatValue so dynamic objects can be formatted
757 template <>
758 class FormatValue<dynamic> {
759  public:
760   explicit FormatValue(const dynamic& val) : val_(val) { }
761
762   template <class FormatCallback>
763   void format(FormatArg& arg, FormatCallback& cb) const {
764     switch (val_.type()) {
765     case dynamic::NULLT:
766       FormatValue<std::nullptr_t>(nullptr).format(arg, cb);
767       break;
768     case dynamic::BOOL:
769       FormatValue<bool>(val_.asBool()).format(arg, cb);
770       break;
771     case dynamic::INT64:
772       FormatValue<int64_t>(val_.asInt()).format(arg, cb);
773       break;
774     case dynamic::STRING:
775       FormatValue<fbstring>(val_.asString()).format(arg, cb);
776       break;
777     case dynamic::DOUBLE:
778       FormatValue<double>(val_.asDouble()).format(arg, cb);
779       break;
780     case dynamic::ARRAY:
781       FormatValue(val_.at(arg.splitIntKey())).format(arg, cb);
782       break;
783     case dynamic::OBJECT:
784       FormatValue(val_.at(arg.splitKey().toFbstring())).format(arg, cb);
785       break;
786     }
787   }
788
789  private:
790   const dynamic& val_;
791 };
792
793 template <class V>
794 class FormatValue<detail::DefaultValueWrapper<dynamic, V>> {
795  public:
796   explicit FormatValue(
797       const detail::DefaultValueWrapper<dynamic, V>& val)
798     : val_(val) { }
799
800   template <class FormatCallback>
801   void format(FormatArg& arg, FormatCallback& cb) const {
802     auto& c = val_.container;
803     switch (c.type()) {
804     case dynamic::NULLT:
805     case dynamic::BOOL:
806     case dynamic::INT64:
807     case dynamic::STRING:
808     case dynamic::DOUBLE:
809       FormatValue<dynamic>(c).format(arg, cb);
810       break;
811     case dynamic::ARRAY:
812       {
813         int key = arg.splitIntKey();
814         if (key >= 0 && size_t(key) < c.size()) {
815           FormatValue<dynamic>(c.at(key)).format(arg, cb);
816         } else{
817           FormatValue<V>(val_.defaultValue).format(arg, cb);
818         }
819       }
820       break;
821     case dynamic::OBJECT:
822       {
823         auto pos = c.find(arg.splitKey());
824         if (pos != c.items().end()) {
825           FormatValue<dynamic>(pos->second).format(arg, cb);
826         } else {
827           FormatValue<V>(val_.defaultValue).format(arg, cb);
828         }
829       }
830       break;
831     }
832   }
833
834  private:
835   const detail::DefaultValueWrapper<dynamic, V>& val_;
836 };
837
838 }  // namespaces
839
840 #undef FB_DYNAMIC_APPLY
841
842 #endif