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