factory.hpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  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, 2019.
  4. // Modifications copyright (c) 2017, 2019, 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/dpar.hpp>
  15. #include <boost/geometry/srs/projections/proj4.hpp>
  16. #include <boost/geometry/srs/projections/impl/factory_entry.hpp>
  17. #include <boost/geometry/srs/projections/proj/aea.hpp>
  18. #include <boost/geometry/srs/projections/proj/aeqd.hpp>
  19. #include <boost/geometry/srs/projections/proj/airy.hpp>
  20. #include <boost/geometry/srs/projections/proj/aitoff.hpp>
  21. #include <boost/geometry/srs/projections/proj/august.hpp>
  22. #include <boost/geometry/srs/projections/proj/bacon.hpp>
  23. #include <boost/geometry/srs/projections/proj/bipc.hpp>
  24. #include <boost/geometry/srs/projections/proj/boggs.hpp>
  25. #include <boost/geometry/srs/projections/proj/bonne.hpp>
  26. #include <boost/geometry/srs/projections/proj/cass.hpp>
  27. #include <boost/geometry/srs/projections/proj/cc.hpp>
  28. #include <boost/geometry/srs/projections/proj/cea.hpp>
  29. #include <boost/geometry/srs/projections/proj/chamb.hpp>
  30. #include <boost/geometry/srs/projections/proj/collg.hpp>
  31. #include <boost/geometry/srs/projections/proj/crast.hpp>
  32. #include <boost/geometry/srs/projections/proj/denoy.hpp>
  33. #include <boost/geometry/srs/projections/proj/eck1.hpp>
  34. #include <boost/geometry/srs/projections/proj/eck2.hpp>
  35. #include <boost/geometry/srs/projections/proj/eck3.hpp>
  36. #include <boost/geometry/srs/projections/proj/eck4.hpp>
  37. #include <boost/geometry/srs/projections/proj/eck5.hpp>
  38. #include <boost/geometry/srs/projections/proj/eqc.hpp>
  39. #include <boost/geometry/srs/projections/proj/eqdc.hpp>
  40. #include <boost/geometry/srs/projections/proj/etmerc.hpp>
  41. #include <boost/geometry/srs/projections/proj/fahey.hpp>
  42. #include <boost/geometry/srs/projections/proj/fouc_s.hpp>
  43. #include <boost/geometry/srs/projections/proj/gall.hpp>
  44. #include <boost/geometry/srs/projections/proj/geocent.hpp>
  45. #include <boost/geometry/srs/projections/proj/geos.hpp>
  46. #include <boost/geometry/srs/projections/proj/gins8.hpp>
  47. #include <boost/geometry/srs/projections/proj/gn_sinu.hpp>
  48. #include <boost/geometry/srs/projections/proj/gnom.hpp>
  49. #include <boost/geometry/srs/projections/proj/goode.hpp>
  50. #include <boost/geometry/srs/projections/proj/gstmerc.hpp>
  51. #include <boost/geometry/srs/projections/proj/hammer.hpp>
  52. #include <boost/geometry/srs/projections/proj/hatano.hpp>
  53. #include <boost/geometry/srs/projections/proj/healpix.hpp>
  54. #include <boost/geometry/srs/projections/proj/krovak.hpp>
  55. #include <boost/geometry/srs/projections/proj/igh.hpp>
  56. #include <boost/geometry/srs/projections/proj/imw_p.hpp>
  57. #include <boost/geometry/srs/projections/proj/isea.hpp>
  58. #include <boost/geometry/srs/projections/proj/laea.hpp>
  59. #include <boost/geometry/srs/projections/proj/labrd.hpp>
  60. #include <boost/geometry/srs/projections/proj/lagrng.hpp>
  61. #include <boost/geometry/srs/projections/proj/larr.hpp>
  62. #include <boost/geometry/srs/projections/proj/lask.hpp>
  63. #include <boost/geometry/srs/projections/proj/latlong.hpp>
  64. #include <boost/geometry/srs/projections/proj/lcc.hpp>
  65. #include <boost/geometry/srs/projections/proj/lcca.hpp>
  66. #include <boost/geometry/srs/projections/proj/loxim.hpp>
  67. #include <boost/geometry/srs/projections/proj/lsat.hpp>
  68. #include <boost/geometry/srs/projections/proj/mbtfpp.hpp>
  69. #include <boost/geometry/srs/projections/proj/mbtfpq.hpp>
  70. #include <boost/geometry/srs/projections/proj/mbt_fps.hpp>
  71. #include <boost/geometry/srs/projections/proj/merc.hpp>
  72. #include <boost/geometry/srs/projections/proj/mill.hpp>
  73. #include <boost/geometry/srs/projections/proj/mod_ster.hpp>
  74. #include <boost/geometry/srs/projections/proj/moll.hpp>
  75. #include <boost/geometry/srs/projections/proj/natearth.hpp>
  76. #include <boost/geometry/srs/projections/proj/nell.hpp>
  77. #include <boost/geometry/srs/projections/proj/nell_h.hpp>
  78. #include <boost/geometry/srs/projections/proj/nocol.hpp>
  79. #include <boost/geometry/srs/projections/proj/nsper.hpp>
  80. #include <boost/geometry/srs/projections/proj/nzmg.hpp>
  81. #include <boost/geometry/srs/projections/proj/ob_tran.hpp>
  82. #include <boost/geometry/srs/projections/proj/ocea.hpp>
  83. #include <boost/geometry/srs/projections/proj/oea.hpp>
  84. #include <boost/geometry/srs/projections/proj/omerc.hpp>
  85. #include <boost/geometry/srs/projections/proj/ortho.hpp>
  86. #include <boost/geometry/srs/projections/proj/qsc.hpp>
  87. #include <boost/geometry/srs/projections/proj/poly.hpp>
  88. #include <boost/geometry/srs/projections/proj/putp2.hpp>
  89. #include <boost/geometry/srs/projections/proj/putp3.hpp>
  90. #include <boost/geometry/srs/projections/proj/putp4p.hpp>
  91. #include <boost/geometry/srs/projections/proj/putp5.hpp>
  92. #include <boost/geometry/srs/projections/proj/putp6.hpp>
  93. #include <boost/geometry/srs/projections/proj/robin.hpp>
  94. #include <boost/geometry/srs/projections/proj/rouss.hpp>
  95. #include <boost/geometry/srs/projections/proj/rpoly.hpp>
  96. #include <boost/geometry/srs/projections/proj/sconics.hpp>
  97. #include <boost/geometry/srs/projections/proj/somerc.hpp>
  98. #include <boost/geometry/srs/projections/proj/stere.hpp>
  99. #include <boost/geometry/srs/projections/proj/sterea.hpp>
  100. #include <boost/geometry/srs/projections/proj/sts.hpp>
  101. #include <boost/geometry/srs/projections/proj/tcc.hpp>
  102. #include <boost/geometry/srs/projections/proj/tcea.hpp>
  103. #include <boost/geometry/srs/projections/proj/tmerc.hpp>
  104. #include <boost/geometry/srs/projections/proj/tpeqd.hpp>
  105. #include <boost/geometry/srs/projections/proj/urm5.hpp>
  106. #include <boost/geometry/srs/projections/proj/urmfps.hpp>
  107. #include <boost/geometry/srs/projections/proj/vandg.hpp>
  108. #include <boost/geometry/srs/projections/proj/vandg2.hpp>
  109. #include <boost/geometry/srs/projections/proj/vandg4.hpp>
  110. #include <boost/geometry/srs/projections/proj/wag2.hpp>
  111. #include <boost/geometry/srs/projections/proj/wag3.hpp>
  112. #include <boost/geometry/srs/projections/proj/wag7.hpp>
  113. #include <boost/geometry/srs/projections/proj/wink1.hpp>
  114. #include <boost/geometry/srs/projections/proj/wink2.hpp>
  115. namespace boost { namespace geometry { namespace projections
  116. {
  117. namespace detail
  118. {
  119. template <typename Params>
  120. struct factory_key
  121. {
  122. BOOST_MPL_ASSERT_MSG((false), INVALID_PARAMETERS_TYPE, (Params));
  123. };
  124. template <>
  125. struct factory_key<srs::detail::proj4_parameters>
  126. {
  127. typedef std::string type;
  128. template <typename ProjParams>
  129. static type const& get(ProjParams const& par)
  130. {
  131. return par.id.name;
  132. }
  133. static const char* get(const char* name, srs::dpar::value_proj id)
  134. {
  135. return name;
  136. }
  137. };
  138. template <typename T>
  139. struct factory_key<srs::dpar::parameters<T> >
  140. {
  141. typedef srs::dpar::value_proj type;
  142. template <typename ProjParams>
  143. static type const& get(ProjParams const& par)
  144. {
  145. return par.id.id;
  146. }
  147. static srs::dpar::value_proj get(const char* name, srs::dpar::value_proj id)
  148. {
  149. return id;
  150. }
  151. };
  152. template <typename Params, typename CT, typename ProjParams>
  153. class factory
  154. {
  155. private:
  156. typedef detail::factory_entry
  157. <
  158. Params,
  159. CT,
  160. ProjParams
  161. > entry_base;
  162. typedef factory_key<Params> key;
  163. typedef typename key::type key_type;
  164. typedef boost::shared_ptr<entry_base> entry_ptr;
  165. typedef std::map<key_type, entry_ptr> entries_map;
  166. entries_map m_entries;
  167. public:
  168. factory()
  169. {
  170. detail::aea_init(*this);
  171. detail::aeqd_init(*this);
  172. detail::airy_init(*this);
  173. detail::aitoff_init(*this);
  174. detail::august_init(*this);
  175. detail::bacon_init(*this);
  176. detail::bipc_init(*this);
  177. detail::boggs_init(*this);
  178. detail::bonne_init(*this);
  179. detail::cass_init(*this);
  180. detail::cc_init(*this);
  181. detail::cea_init(*this);
  182. detail::chamb_init(*this);
  183. detail::collg_init(*this);
  184. detail::crast_init(*this);
  185. detail::denoy_init(*this);
  186. detail::eck1_init(*this);
  187. detail::eck2_init(*this);
  188. detail::eck3_init(*this);
  189. detail::eck4_init(*this);
  190. detail::eck5_init(*this);
  191. detail::eqc_init(*this);
  192. detail::eqdc_init(*this);
  193. detail::etmerc_init(*this);
  194. detail::fahey_init(*this);
  195. detail::fouc_s_init(*this);
  196. detail::gall_init(*this);
  197. detail::geocent_init(*this);
  198. detail::geos_init(*this);
  199. detail::gins8_init(*this);
  200. detail::gn_sinu_init(*this);
  201. detail::gnom_init(*this);
  202. detail::goode_init(*this);
  203. detail::gstmerc_init(*this);
  204. detail::hammer_init(*this);
  205. detail::hatano_init(*this);
  206. detail::healpix_init(*this);
  207. detail::krovak_init(*this);
  208. detail::igh_init(*this);
  209. detail::imw_p_init(*this);
  210. detail::isea_init(*this);
  211. detail::labrd_init(*this);
  212. detail::laea_init(*this);
  213. detail::lagrng_init(*this);
  214. detail::larr_init(*this);
  215. detail::lask_init(*this);
  216. detail::latlong_init(*this);
  217. detail::lcc_init(*this);
  218. detail::lcca_init(*this);
  219. detail::loxim_init(*this);
  220. detail::lsat_init(*this);
  221. detail::mbtfpp_init(*this);
  222. detail::mbtfpq_init(*this);
  223. detail::mbt_fps_init(*this);
  224. detail::merc_init(*this);
  225. detail::mill_init(*this);
  226. detail::mod_ster_init(*this);
  227. detail::moll_init(*this);
  228. detail::natearth_init(*this);
  229. detail::nell_init(*this);
  230. detail::nell_h_init(*this);
  231. detail::nocol_init(*this);
  232. detail::nsper_init(*this);
  233. detail::nzmg_init(*this);
  234. detail::ob_tran_init(*this);
  235. detail::ocea_init(*this);
  236. detail::oea_init(*this);
  237. detail::omerc_init(*this);
  238. detail::ortho_init(*this);
  239. detail::qsc_init(*this);
  240. detail::poly_init(*this);
  241. detail::putp2_init(*this);
  242. detail::putp3_init(*this);
  243. detail::putp4p_init(*this);
  244. detail::putp5_init(*this);
  245. detail::putp6_init(*this);
  246. detail::robin_init(*this);
  247. detail::rouss_init(*this);
  248. detail::rpoly_init(*this);
  249. detail::sconics_init(*this);
  250. detail::somerc_init(*this);
  251. detail::stere_init(*this);
  252. detail::sterea_init(*this);
  253. detail::sts_init(*this);
  254. detail::tcc_init(*this);
  255. detail::tcea_init(*this);
  256. detail::tmerc_init(*this);
  257. detail::tpeqd_init(*this);
  258. detail::urm5_init(*this);
  259. detail::urmfps_init(*this);
  260. detail::vandg_init(*this);
  261. detail::vandg2_init(*this);
  262. detail::vandg4_init(*this);
  263. detail::wag2_init(*this);
  264. detail::wag3_init(*this);
  265. detail::wag7_init(*this);
  266. detail::wink1_init(*this);
  267. detail::wink2_init(*this);
  268. }
  269. void add_to_factory(const char* name, srs::dpar::value_proj id, entry_base* entry)
  270. {
  271. // The pointer has to be owned before std::map::operator[] in case it thrown an exception.
  272. entry_ptr ptr(entry);
  273. m_entries[key::get(name, id)] = ptr;
  274. }
  275. detail::dynamic_wrapper_b<CT, ProjParams>* create_new(Params const& params, ProjParams const& proj_par) const
  276. {
  277. typedef typename entries_map::const_iterator const_iterator;
  278. const_iterator it = m_entries.find(key::get(proj_par));
  279. if (it != m_entries.end())
  280. {
  281. return it->second->create_new(params, proj_par);
  282. }
  283. return 0;
  284. }
  285. };
  286. template <typename T>
  287. inline detail::dynamic_wrapper_b<T, projections::parameters<T> >*
  288. create_new(srs::detail::proj4_parameters const& params,
  289. projections::parameters<T> const& parameters)
  290. {
  291. static factory<srs::detail::proj4_parameters, T, projections::parameters<T> > const fac;
  292. return fac.create_new(params, parameters);
  293. }
  294. template <typename T>
  295. inline detail::dynamic_wrapper_b<T, projections::parameters<T> >*
  296. create_new(srs::dpar::parameters<T> const& params,
  297. projections::parameters<T> const& parameters)
  298. {
  299. static factory<srs::dpar::parameters<T>, T, projections::parameters<T> > const fac;
  300. return fac.create_new(params, parameters);
  301. }
  302. } // namespace detail
  303. }}} // namespace boost::geometry::projections
  304. #endif // BOOST_GEOMETRY_PROJECTIONS_FACTORY_HPP