factory.hpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2008-2012 Barend Gehrels, Amsterdam, the Netherlands.
  3. // This file was modified by Oracle on 2017.
  4. // Modifications copyright (c) 2017, Oracle and/or its affiliates.
  5. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  6. // Use, modification and distribution is subject to the Boost Software License,
  7. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. #ifndef BOOST_GEOMETRY_PROJECTIONS_FACTORY_HPP
  10. #define BOOST_GEOMETRY_PROJECTIONS_FACTORY_HPP
  11. #include <map>
  12. #include <string>
  13. #include <boost/shared_ptr.hpp>
  14. #include <boost/geometry/srs/projections/impl/factory_entry.hpp>
  15. #include <boost/geometry/srs/projections/proj/aea.hpp>
  16. #include <boost/geometry/srs/projections/proj/aeqd.hpp>
  17. #include <boost/geometry/srs/projections/proj/airy.hpp>
  18. #include <boost/geometry/srs/projections/proj/aitoff.hpp>
  19. #include <boost/geometry/srs/projections/proj/august.hpp>
  20. #include <boost/geometry/srs/projections/proj/bacon.hpp>
  21. #include <boost/geometry/srs/projections/proj/bipc.hpp>
  22. #include <boost/geometry/srs/projections/proj/boggs.hpp>
  23. #include <boost/geometry/srs/projections/proj/bonne.hpp>
  24. #include <boost/geometry/srs/projections/proj/cass.hpp>
  25. #include <boost/geometry/srs/projections/proj/cc.hpp>
  26. #include <boost/geometry/srs/projections/proj/cea.hpp>
  27. #include <boost/geometry/srs/projections/proj/chamb.hpp>
  28. #include <boost/geometry/srs/projections/proj/collg.hpp>
  29. #include <boost/geometry/srs/projections/proj/crast.hpp>
  30. #include <boost/geometry/srs/projections/proj/denoy.hpp>
  31. #include <boost/geometry/srs/projections/proj/eck1.hpp>
  32. #include <boost/geometry/srs/projections/proj/eck2.hpp>
  33. #include <boost/geometry/srs/projections/proj/eck3.hpp>
  34. #include <boost/geometry/srs/projections/proj/eck4.hpp>
  35. #include <boost/geometry/srs/projections/proj/eck5.hpp>
  36. #include <boost/geometry/srs/projections/proj/eqc.hpp>
  37. #include <boost/geometry/srs/projections/proj/eqdc.hpp>
  38. #include <boost/geometry/srs/projections/proj/etmerc.hpp>
  39. #include <boost/geometry/srs/projections/proj/fahey.hpp>
  40. #include <boost/geometry/srs/projections/proj/fouc_s.hpp>
  41. #include <boost/geometry/srs/projections/proj/gall.hpp>
  42. #include <boost/geometry/srs/projections/proj/geocent.hpp>
  43. #include <boost/geometry/srs/projections/proj/geos.hpp>
  44. #include <boost/geometry/srs/projections/proj/gins8.hpp>
  45. #include <boost/geometry/srs/projections/proj/gn_sinu.hpp>
  46. #include <boost/geometry/srs/projections/proj/gnom.hpp>
  47. #include <boost/geometry/srs/projections/proj/goode.hpp>
  48. #include <boost/geometry/srs/projections/proj/gstmerc.hpp>
  49. #include <boost/geometry/srs/projections/proj/hammer.hpp>
  50. #include <boost/geometry/srs/projections/proj/hatano.hpp>
  51. #include <boost/geometry/srs/projections/proj/healpix.hpp>
  52. #include <boost/geometry/srs/projections/proj/krovak.hpp>
  53. #include <boost/geometry/srs/projections/proj/igh.hpp>
  54. #include <boost/geometry/srs/projections/proj/imw_p.hpp>
  55. #include <boost/geometry/srs/projections/proj/isea.hpp>
  56. #include <boost/geometry/srs/projections/proj/laea.hpp>
  57. #include <boost/geometry/srs/projections/proj/labrd.hpp>
  58. #include <boost/geometry/srs/projections/proj/lagrng.hpp>
  59. #include <boost/geometry/srs/projections/proj/larr.hpp>
  60. #include <boost/geometry/srs/projections/proj/lask.hpp>
  61. #include <boost/geometry/srs/projections/proj/latlong.hpp>
  62. #include <boost/geometry/srs/projections/proj/lcc.hpp>
  63. #include <boost/geometry/srs/projections/proj/lcca.hpp>
  64. #include <boost/geometry/srs/projections/proj/loxim.hpp>
  65. #include <boost/geometry/srs/projections/proj/lsat.hpp>
  66. #include <boost/geometry/srs/projections/proj/mbtfpp.hpp>
  67. #include <boost/geometry/srs/projections/proj/mbtfpq.hpp>
  68. #include <boost/geometry/srs/projections/proj/mbt_fps.hpp>
  69. #include <boost/geometry/srs/projections/proj/merc.hpp>
  70. #include <boost/geometry/srs/projections/proj/mill.hpp>
  71. #include <boost/geometry/srs/projections/proj/mod_ster.hpp>
  72. #include <boost/geometry/srs/projections/proj/moll.hpp>
  73. #include <boost/geometry/srs/projections/proj/natearth.hpp>
  74. #include <boost/geometry/srs/projections/proj/nell.hpp>
  75. #include <boost/geometry/srs/projections/proj/nell_h.hpp>
  76. #include <boost/geometry/srs/projections/proj/nocol.hpp>
  77. #include <boost/geometry/srs/projections/proj/nsper.hpp>
  78. #include <boost/geometry/srs/projections/proj/nzmg.hpp>
  79. #include <boost/geometry/srs/projections/proj/ob_tran.hpp>
  80. #include <boost/geometry/srs/projections/proj/ocea.hpp>
  81. #include <boost/geometry/srs/projections/proj/oea.hpp>
  82. #include <boost/geometry/srs/projections/proj/omerc.hpp>
  83. #include <boost/geometry/srs/projections/proj/ortho.hpp>
  84. #include <boost/geometry/srs/projections/proj/qsc.hpp>
  85. #include <boost/geometry/srs/projections/proj/poly.hpp>
  86. #include <boost/geometry/srs/projections/proj/putp2.hpp>
  87. #include <boost/geometry/srs/projections/proj/putp3.hpp>
  88. #include <boost/geometry/srs/projections/proj/putp4p.hpp>
  89. #include <boost/geometry/srs/projections/proj/putp5.hpp>
  90. #include <boost/geometry/srs/projections/proj/putp6.hpp>
  91. #include <boost/geometry/srs/projections/proj/robin.hpp>
  92. #include <boost/geometry/srs/projections/proj/rouss.hpp>
  93. #include <boost/geometry/srs/projections/proj/rpoly.hpp>
  94. #include <boost/geometry/srs/projections/proj/sconics.hpp>
  95. #include <boost/geometry/srs/projections/proj/somerc.hpp>
  96. #include <boost/geometry/srs/projections/proj/stere.hpp>
  97. #include <boost/geometry/srs/projections/proj/sterea.hpp>
  98. #include <boost/geometry/srs/projections/proj/sts.hpp>
  99. #include <boost/geometry/srs/projections/proj/tcc.hpp>
  100. #include <boost/geometry/srs/projections/proj/tcea.hpp>
  101. #include <boost/geometry/srs/projections/proj/tmerc.hpp>
  102. #include <boost/geometry/srs/projections/proj/tpeqd.hpp>
  103. #include <boost/geometry/srs/projections/proj/urm5.hpp>
  104. #include <boost/geometry/srs/projections/proj/urmfps.hpp>
  105. #include <boost/geometry/srs/projections/proj/vandg.hpp>
  106. #include <boost/geometry/srs/projections/proj/vandg2.hpp>
  107. #include <boost/geometry/srs/projections/proj/vandg4.hpp>
  108. #include <boost/geometry/srs/projections/proj/wag2.hpp>
  109. #include <boost/geometry/srs/projections/proj/wag3.hpp>
  110. #include <boost/geometry/srs/projections/proj/wag7.hpp>
  111. #include <boost/geometry/srs/projections/proj/wink1.hpp>
  112. #include <boost/geometry/srs/projections/proj/wink2.hpp>
  113. namespace boost { namespace geometry { namespace projections
  114. {
  115. namespace detail
  116. {
  117. template <typename CT, typename Parameters>
  118. class factory : public detail::base_factory<CT, Parameters>
  119. {
  120. private:
  121. typedef std::map
  122. <
  123. std::string,
  124. boost::shared_ptr
  125. <
  126. detail::factory_entry
  127. <
  128. CT,
  129. Parameters
  130. >
  131. >
  132. > prj_registry;
  133. prj_registry m_registry;
  134. public:
  135. factory()
  136. {
  137. detail::aea_init(*this);
  138. detail::aeqd_init(*this);
  139. detail::airy_init(*this);
  140. detail::aitoff_init(*this);
  141. detail::august_init(*this);
  142. detail::bacon_init(*this);
  143. detail::bipc_init(*this);
  144. detail::boggs_init(*this);
  145. detail::bonne_init(*this);
  146. detail::cass_init(*this);
  147. detail::cc_init(*this);
  148. detail::cea_init(*this);
  149. detail::chamb_init(*this);
  150. detail::collg_init(*this);
  151. detail::crast_init(*this);
  152. detail::denoy_init(*this);
  153. detail::eck1_init(*this);
  154. detail::eck2_init(*this);
  155. detail::eck3_init(*this);
  156. detail::eck4_init(*this);
  157. detail::eck5_init(*this);
  158. detail::eqc_init(*this);
  159. detail::eqdc_init(*this);
  160. detail::etmerc_init(*this);
  161. detail::fahey_init(*this);
  162. detail::fouc_s_init(*this);
  163. detail::gall_init(*this);
  164. detail::geocent_init(*this);
  165. detail::geos_init(*this);
  166. detail::gins8_init(*this);
  167. detail::gn_sinu_init(*this);
  168. detail::gnom_init(*this);
  169. detail::goode_init(*this);
  170. detail::gstmerc_init(*this);
  171. detail::hammer_init(*this);
  172. detail::hatano_init(*this);
  173. detail::healpix_init(*this);
  174. detail::krovak_init(*this);
  175. detail::igh_init(*this);
  176. detail::imw_p_init(*this);
  177. detail::isea_init(*this);
  178. detail::labrd_init(*this);
  179. detail::laea_init(*this);
  180. detail::lagrng_init(*this);
  181. detail::larr_init(*this);
  182. detail::lask_init(*this);
  183. detail::latlong_init(*this);
  184. detail::lcc_init(*this);
  185. detail::lcca_init(*this);
  186. detail::loxim_init(*this);
  187. detail::lsat_init(*this);
  188. detail::mbtfpp_init(*this);
  189. detail::mbtfpq_init(*this);
  190. detail::mbt_fps_init(*this);
  191. detail::merc_init(*this);
  192. detail::mill_init(*this);
  193. detail::mod_ster_init(*this);
  194. detail::moll_init(*this);
  195. detail::natearth_init(*this);
  196. detail::nell_init(*this);
  197. detail::nell_h_init(*this);
  198. detail::nocol_init(*this);
  199. detail::nsper_init(*this);
  200. detail::nzmg_init(*this);
  201. detail::ob_tran_init(*this);
  202. detail::ocea_init(*this);
  203. detail::oea_init(*this);
  204. detail::omerc_init(*this);
  205. detail::ortho_init(*this);
  206. detail::qsc_init(*this);
  207. detail::poly_init(*this);
  208. detail::putp2_init(*this);
  209. detail::putp3_init(*this);
  210. detail::putp4p_init(*this);
  211. detail::putp5_init(*this);
  212. detail::putp6_init(*this);
  213. detail::robin_init(*this);
  214. detail::rouss_init(*this);
  215. detail::rpoly_init(*this);
  216. detail::sconics_init(*this);
  217. detail::somerc_init(*this);
  218. detail::stere_init(*this);
  219. detail::sterea_init(*this);
  220. detail::sts_init(*this);
  221. detail::tcc_init(*this);
  222. detail::tcea_init(*this);
  223. detail::tmerc_init(*this);
  224. detail::tpeqd_init(*this);
  225. detail::urm5_init(*this);
  226. detail::urmfps_init(*this);
  227. detail::vandg_init(*this);
  228. detail::vandg2_init(*this);
  229. detail::vandg4_init(*this);
  230. detail::wag2_init(*this);
  231. detail::wag3_init(*this);
  232. detail::wag7_init(*this);
  233. detail::wink1_init(*this);
  234. detail::wink2_init(*this);
  235. }
  236. virtual ~factory() {}
  237. virtual void add_to_factory(std::string const& name,
  238. detail::factory_entry<CT, Parameters>* sub)
  239. {
  240. m_registry[name].reset(sub);
  241. }
  242. inline detail::base_v<CT, Parameters>* create_new(Parameters const& parameters) const
  243. {
  244. typename prj_registry::const_iterator it = m_registry.find(parameters.name);
  245. if (it != m_registry.end())
  246. {
  247. return it->second->create_new(parameters);
  248. }
  249. return 0;
  250. }
  251. };
  252. template <typename CT>
  253. inline detail::base_v<CT, projections::parameters<CT> >*
  254. create_new(projections::parameters<CT> const& parameters)
  255. {
  256. static factory<CT, projections::parameters<CT> > fac;
  257. return fac.create_new(parameters);
  258. }
  259. } // namespace detail
  260. }}} // namespace boost::geometry::projections
  261. #endif // BOOST_GEOMETRY_PROJECTIONS_FACTORY_HPP