Making from(dynamic.items()) work
[folly.git] / folly / dynamic-inl.h
1 /*
2  * Copyright 2013 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   typedef typename It::value_type value_type;
329
330   /* implicit */ IterableProxy(const dynamic::ObjectImpl* o) : o_(o) { }
331
332   It begin() const {
333     return o_->begin();
334   }
335
336   It end() const {
337     return o_->end();
338   }
339
340  private:
341   const dynamic::ObjectImpl* o_;
342 };
343
344 inline dynamic::IterableProxy<dynamic::const_key_iterator> dynamic::keys()
345   const {
346   return &(get<ObjectImpl>());
347 }
348
349 inline dynamic::IterableProxy<dynamic::const_value_iterator> dynamic::values()
350   const {
351   return &(get<ObjectImpl>());
352 }
353
354 inline dynamic::IterableProxy<dynamic::const_item_iterator> dynamic::items()
355   const {
356   return &(get<ObjectImpl>());
357 }
358
359 inline bool dynamic::isString() const { return get_nothrow<fbstring>(); }
360 inline bool dynamic::isObject() const { return get_nothrow<ObjectImpl>(); }
361 inline bool dynamic::isBool()   const { return get_nothrow<bool>(); }
362 inline bool dynamic::isArray()  const { return get_nothrow<Array>(); }
363 inline bool dynamic::isDouble() const { return get_nothrow<double>(); }
364 inline bool dynamic::isInt()    const { return get_nothrow<int64_t>(); }
365 inline bool dynamic::isNull()   const { return get_nothrow<void*>(); }
366 inline bool dynamic::isNumber() const { return isInt() || isDouble(); }
367
368 inline dynamic::Type dynamic::type() const {
369   return type_;
370 }
371
372 inline fbstring dynamic::asString() const { return asImpl<fbstring>(); }
373 inline double   dynamic::asDouble() const { return asImpl<double>(); }
374 inline int64_t  dynamic::asInt()    const { return asImpl<int64_t>(); }
375 inline bool     dynamic::asBool()   const { return asImpl<bool>(); }
376
377 template<class T>
378 struct dynamic::CompareOp {
379   static bool comp(T const& a, T const& b) { return a < b; }
380 };
381 template<>
382 struct dynamic::CompareOp<dynamic::ObjectImpl> {
383   static bool comp(ObjectImpl const& a, ObjectImpl const& b) {
384     // This code never executes; it is just here for the compiler.
385     return false;
386   }
387 };
388
389 inline bool dynamic::operator<(dynamic const& o) const {
390   if (UNLIKELY(type_ == OBJECT || o.type_ == OBJECT)) {
391     throw TypeError("object", type_);
392   }
393   if (type_ != o.type_) {
394     return type_ < o.type_;
395   }
396
397 #define FB_X(T) return CompareOp<T>::comp(*getAddress<T>(),   \
398                                           *o.getAddress<T>())
399   FB_DYNAMIC_APPLY(type_, FB_X);
400 #undef FB_X
401 }
402
403 inline bool dynamic::operator==(dynamic const& o) const {
404   if (type() != o.type()) {
405     if (isNumber() && o.isNumber()) {
406       auto& integ = isInt() ? *this : o;
407       auto& doubl = isInt() ? o     : *this;
408       return integ.asInt() == doubl.asDouble();
409     }
410     return false;
411   }
412
413 #define FB_X(T) return *getAddress<T>() == *o.getAddress<T>();
414   FB_DYNAMIC_APPLY(type_, FB_X);
415 #undef FB_X
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& dynamic::operator=(dynamic const& o) {
469   if (&o != this) {
470     destroy();
471 #define FB_X(T) new (getAddress<T>()) T(*o.getAddress<T>())
472     FB_DYNAMIC_APPLY(o.type_, FB_X);
473 #undef FB_X
474     type_ = o.type_;
475   }
476   return *this;
477 }
478
479 inline dynamic& dynamic::operator=(dynamic&& o) {
480   if (&o != this) {
481     destroy();
482 #define FB_X(T) new (getAddress<T>()) T(std::move(*o.getAddress<T>()))
483     FB_DYNAMIC_APPLY(o.type_, FB_X);
484 #undef FB_X
485     type_ = o.type_;
486   }
487   return *this;
488 }
489
490 inline dynamic& dynamic::operator[](dynamic const& k) {
491   if (!isObject() && !isArray()) {
492     throw TypeError("object/array", type());
493   }
494   if (isArray()) {
495     return at(k);
496   }
497   auto& obj = get<ObjectImpl>();
498   auto ret = obj.insert({k, nullptr});
499   return ret.first->second;
500 }
501
502 inline dynamic const& dynamic::operator[](dynamic const& idx) const {
503   return at(idx);
504 }
505
506 inline dynamic dynamic::getDefault(const dynamic& k, const dynamic& v) const {
507   auto& obj = get<ObjectImpl>();
508   auto it = obj.find(k);
509   return it == obj.end() ? v : it->second;
510 }
511
512 inline dynamic&& dynamic::getDefault(const dynamic& k, dynamic&& v) const {
513   auto& obj = get<ObjectImpl>();
514   auto it = obj.find(k);
515   if (it != obj.end()) {
516     v = it->second;
517   }
518
519   return std::move(v);
520 }
521
522 template<class K, class V> inline dynamic& dynamic::setDefault(K&& k, V&& v) {
523   auto& obj = get<ObjectImpl>();
524   return obj.insert(std::make_pair(std::forward<K>(k),
525                                    std::forward<V>(v))).first->second;
526 }
527
528 inline dynamic const& dynamic::at(dynamic const& idx) const {
529   return const_cast<dynamic*>(this)->at(idx);
530 }
531
532 inline dynamic& dynamic::at(dynamic const& idx) {
533   if (!isObject() && !isArray()) {
534     throw TypeError("object/array", type());
535   }
536
537   if (auto* parray = get_nothrow<Array>()) {
538     if (idx >= parray->size()) {
539       throw std::out_of_range("out of range in dynamic array");
540     }
541     if (!idx.isInt()) {
542       throw TypeError("int64", idx.type());
543     }
544     return (*parray)[idx.asInt()];
545   }
546
547   auto* pobj = get_nothrow<ObjectImpl>();
548   assert(pobj);
549   auto it = find(idx);
550   if (it == items().end()) {
551     throw std::out_of_range(to<std::string>(
552         "couldn't find key ", idx.asString(), " in dynamic object"));
553   }
554   return const_cast<dynamic&>(it->second);
555 }
556
557 inline bool dynamic::empty() const {
558   if (isNull()) {
559     return true;
560   }
561   return !size();
562 }
563
564 inline std::size_t dynamic::size() const {
565   if (auto* ar = get_nothrow<Array>()) {
566     return ar->size();
567   }
568   if (auto* obj = get_nothrow<ObjectImpl>()) {
569     return obj->size();
570   }
571   if (auto* str = get_nothrow<fbstring>()) {
572     return str->size();
573   }
574   throw TypeError("array/object", type());
575 }
576
577 inline std::size_t dynamic::count(dynamic const& key) const {
578   return find(key) != items().end();
579 }
580
581 inline dynamic::const_item_iterator dynamic::find(dynamic const& key) const {
582   return get<ObjectImpl>().find(key);
583 }
584
585 template<class K, class V> inline void dynamic::insert(K&& key, V&& val) {
586   auto& obj = get<ObjectImpl>();
587   auto rv = obj.insert(std::make_pair(std::forward<K>(key),
588                                       std::forward<V>(val)));
589   if (!rv.second) {
590     // note, the second use of std:forward<V>(val) is only correct
591     // if the first one did not result in a move. obj[key] = val
592     // would be preferrable but doesn't compile because dynamic
593     // is (intentionally) not default constructable
594     rv.first->second = std::forward<V>(val);
595   }
596 }
597
598 inline std::size_t dynamic::erase(dynamic const& key) {
599   auto& obj = get<ObjectImpl>();
600   return obj.erase(key);
601 }
602
603 inline dynamic::const_iterator dynamic::erase(const_iterator it) {
604   auto& arr = get<Array>();
605   // std::vector doesn't have an erase method that works on const iterators,
606   // even though the standard says it should, so this hack converts to a
607   // non-const iterator before calling erase.
608   return get<Array>().erase(arr.begin() + (it - arr.begin()));
609 }
610
611 inline dynamic::const_iterator
612 dynamic::erase(const_iterator first, const_iterator last) {
613   auto& arr = get<Array>();
614   return get<Array>().erase(
615     arr.begin() + (first - arr.begin()),
616     arr.begin() + (last - arr.begin()));
617 }
618
619 inline dynamic::const_key_iterator dynamic::erase(const_key_iterator it) {
620   return const_key_iterator(get<ObjectImpl>().erase(it.base()));
621 }
622
623 inline dynamic::const_key_iterator dynamic::erase(const_key_iterator first,
624                                                   const_key_iterator last) {
625   return const_key_iterator(get<ObjectImpl>().erase(first.base(),
626                                                     last.base()));
627 }
628
629 inline dynamic::const_value_iterator dynamic::erase(const_value_iterator it) {
630   return const_value_iterator(get<ObjectImpl>().erase(it.base()));
631 }
632
633 inline dynamic::const_value_iterator dynamic::erase(const_value_iterator first,
634                                                     const_value_iterator last) {
635   return const_value_iterator(get<ObjectImpl>().erase(first.base(),
636                                                       last.base()));
637 }
638
639 inline dynamic::const_item_iterator dynamic::erase(const_item_iterator it) {
640   return const_item_iterator(get<ObjectImpl>().erase(it.base()));
641 }
642
643 inline dynamic::const_item_iterator dynamic::erase(const_item_iterator first,
644                                                    const_item_iterator last) {
645   return const_item_iterator(get<ObjectImpl>().erase(first.base(),
646                                                      last.base()));
647 }
648
649 inline void dynamic::resize(std::size_t sz, dynamic const& c) {
650   auto& array = get<Array>();
651   array.resize(sz, c);
652 }
653
654 inline void dynamic::push_back(dynamic const& v) {
655   auto& array = get<Array>();
656   array.push_back(v);
657 }
658
659 inline void dynamic::push_back(dynamic&& v) {
660   auto& array = get<Array>();
661   array.push_back(std::move(v));
662 }
663
664 inline void dynamic::pop_back() {
665   auto& array = get<Array>();
666   array.pop_back();
667 }
668
669 inline std::size_t dynamic::hash() const {
670   switch (type()) {
671   case OBJECT:
672   case ARRAY:
673   case NULLT:
674     throw TypeError("not null/object/array", type());
675   case INT64:
676     return std::hash<int64_t>()(asInt());
677   case DOUBLE:
678     return std::hash<double>()(asDouble());
679   case BOOL:
680     return std::hash<bool>()(asBool());
681   case STRING:
682     return std::hash<fbstring>()(asString());
683   default:
684     CHECK(0); abort();
685   }
686 }
687
688 //////////////////////////////////////////////////////////////////////
689
690 template<class T> struct dynamic::TypeInfo {
691   static char const name[];
692   static Type const type;
693 };
694
695 #define FB_DEC_TYPE(T)                                      \
696   template<> char const dynamic::TypeInfo<T>::name[];       \
697   template<> dynamic::Type const dynamic::TypeInfo<T>::type
698
699 FB_DEC_TYPE(void*);
700 FB_DEC_TYPE(bool);
701 FB_DEC_TYPE(fbstring);
702 FB_DEC_TYPE(dynamic::Array);
703 FB_DEC_TYPE(double);
704 FB_DEC_TYPE(int64_t);
705 FB_DEC_TYPE(dynamic::ObjectImpl);
706
707 #undef FB_DEC_TYPE
708
709 template<class T>
710 T dynamic::asImpl() const {
711   switch (type()) {
712   case INT64:    return to<T>(*get_nothrow<int64_t>());
713   case DOUBLE:   return to<T>(*get_nothrow<double>());
714   case BOOL:     return to<T>(*get_nothrow<bool>());
715   case STRING:   return to<T>(*get_nothrow<fbstring>());
716   default:
717     throw TypeError("int/double/bool/string", type());
718   }
719 }
720
721 // Return a T* to our type, or null if we're not that type.
722 template<class T>
723 T* dynamic::get_nothrow() {
724   if (type_ != TypeInfo<T>::type) {
725     return nullptr;
726   }
727   return getAddress<T>();
728 }
729
730 template<class T>
731 T const* dynamic::get_nothrow() const {
732   return const_cast<dynamic*>(this)->get_nothrow<T>();
733 }
734
735 // Return T* for where we can put a T, without type checking.  (Memory
736 // might be uninitialized, even.)
737 template<class T>
738 T* dynamic::getAddress() {
739   return GetAddrImpl<T>::get(u_);
740 }
741
742 template<class T>
743 T const* dynamic::getAddress() const {
744   return const_cast<dynamic*>(this)->getAddress<T>();
745 }
746
747 template<class T> struct dynamic::GetAddrImpl {};
748 template<> struct dynamic::GetAddrImpl<void*> {
749   static void** get(Data& d) { return &d.nul; }
750 };
751 template<> struct dynamic::GetAddrImpl<dynamic::Array> {
752   static Array* get(Data& d) { return &d.array; }
753 };
754 template<> struct dynamic::GetAddrImpl<bool> {
755   static bool* get(Data& d) { return &d.boolean; }
756 };
757 template<> struct dynamic::GetAddrImpl<int64_t> {
758   static int64_t* get(Data& d) { return &d.integer; }
759 };
760 template<> struct dynamic::GetAddrImpl<double> {
761   static double* get(Data& d) { return &d.doubl; }
762 };
763 template<> struct dynamic::GetAddrImpl<fbstring> {
764   static fbstring* get(Data& d) { return &d.string; }
765 };
766 template<> struct dynamic::GetAddrImpl<dynamic::ObjectImpl> {
767   static_assert(sizeof(ObjectImpl) <= sizeof(Data::objectBuffer),
768     "In your implementation, std::unordered_map<> apparently takes different"
769     " amount of space depending on its template parameters.  This is "
770     "weird.  Make objectBuffer bigger if you want to compile dynamic.");
771
772   static ObjectImpl* get(Data& d) {
773     void* data = &d.objectBuffer;
774     return static_cast<ObjectImpl*>(data);
775   }
776 };
777
778 template<class T>
779 T& dynamic::get() {
780   if (auto* p = get_nothrow<T>()) {
781     return *p;
782   }
783   throw TypeError(TypeInfo<T>::name, type());
784 }
785
786 template<class T>
787 T const& dynamic::get() const {
788   return const_cast<dynamic*>(this)->get<T>();
789 }
790
791 inline char const* dynamic::typeName(Type t) {
792 #define FB_X(T) return TypeInfo<T>::name
793   FB_DYNAMIC_APPLY(t, FB_X);
794 #undef FB_X
795 }
796
797 inline void dynamic::destroy() {
798   // This short-circuit speeds up some microbenchmarks.
799   if (type_ == NULLT) return;
800
801 #define FB_X(T) detail::Destroy::destroy(getAddress<T>())
802   FB_DYNAMIC_APPLY(type_, FB_X);
803 #undef FB_X
804   type_ = NULLT;
805   u_.nul = nullptr;
806 }
807
808 //////////////////////////////////////////////////////////////////////
809
810 /*
811  * Helper for implementing operator<<.  Throws if the type shouldn't
812  * support it.
813  */
814 template<class T>
815 struct dynamic::PrintImpl {
816   static void print(dynamic const&, std::ostream& out, T const& t) {
817     out << t;
818   }
819 };
820 template<>
821 struct dynamic::PrintImpl<dynamic::ObjectImpl> {
822   static void print(dynamic const& d,
823                     std::ostream& out,
824                     dynamic::ObjectImpl const&) {
825     d.print_as_pseudo_json(out);
826   }
827 };
828 template<>
829 struct dynamic::PrintImpl<dynamic::Array> {
830   static void print(dynamic const& d,
831                     std::ostream& out,
832                     dynamic::Array const&) {
833     d.print_as_pseudo_json(out);
834   }
835 };
836
837 inline void dynamic::print(std::ostream& out) const {
838 #define FB_X(T) PrintImpl<T>::print(*this, out, *getAddress<T>())
839   FB_DYNAMIC_APPLY(type_, FB_X);
840 #undef FB_X
841 }
842
843 inline std::ostream& operator<<(std::ostream& out, dynamic const& d) {
844   d.print(out);
845   return out;
846 }
847
848 //////////////////////////////////////////////////////////////////////
849
850 // Secialization of FormatValue so dynamic objects can be formatted
851 template <>
852 class FormatValue<dynamic> {
853  public:
854   explicit FormatValue(const dynamic& val) : val_(val) { }
855
856   template <class FormatCallback>
857   void format(FormatArg& arg, FormatCallback& cb) const {
858     switch (val_.type()) {
859     case dynamic::NULLT:
860       FormatValue<std::nullptr_t>(nullptr).format(arg, cb);
861       break;
862     case dynamic::BOOL:
863       FormatValue<bool>(val_.asBool()).format(arg, cb);
864       break;
865     case dynamic::INT64:
866       FormatValue<int64_t>(val_.asInt()).format(arg, cb);
867       break;
868     case dynamic::STRING:
869       FormatValue<fbstring>(val_.asString()).format(arg, cb);
870       break;
871     case dynamic::DOUBLE:
872       FormatValue<double>(val_.asDouble()).format(arg, cb);
873       break;
874     case dynamic::ARRAY:
875       FormatValue(val_.at(arg.splitIntKey())).format(arg, cb);
876       break;
877     case dynamic::OBJECT:
878       FormatValue(val_.at(arg.splitKey().toFbstring())).format(arg, cb);
879       break;
880     }
881   }
882
883  private:
884   const dynamic& val_;
885 };
886
887 }
888
889 #undef FB_DYNAMIC_APPLY
890
891 #endif