]> git.mxchange.org Git - simgear.git/blob - simgear/nasal/cppbind/from_nasal.cxx
cppbind: Prepare for improved bindings.
[simgear.git] / simgear / nasal / cppbind / from_nasal.cxx
1 // Conversion functions to convert Nasal types to C++ types
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #include "from_nasal_detail.hxx"
20 #include "NasalHash.hxx"
21 #include "NasalString.hxx"
22
23 #include <simgear/misc/sg_path.hxx>
24
25 namespace nasal
26 {
27   //----------------------------------------------------------------------------
28   bad_nasal_cast::bad_nasal_cast()
29   {
30
31   }
32
33   //----------------------------------------------------------------------------
34   bad_nasal_cast::bad_nasal_cast(const std::string& msg):
35    _msg( msg )
36   {
37
38   }
39
40   //----------------------------------------------------------------------------
41   bad_nasal_cast::~bad_nasal_cast() throw()
42   {
43
44   }
45
46   //----------------------------------------------------------------------------
47   const char* bad_nasal_cast::what() const throw()
48   {
49     return _msg.empty() ? bad_cast::what() : _msg.c_str();
50   }
51
52   //----------------------------------------------------------------------------
53   std::string from_nasal_helper(naContext c, naRef ref, const std::string*)
54   {
55     naRef na_str = naStringValue(c, ref);
56     return std::string(naStr_data(na_str), naStr_len(na_str));
57   }
58
59   //----------------------------------------------------------------------------
60   SGPath from_nasal_helper(naContext c, naRef ref, const SGPath*)
61   {
62       naRef na_str = naStringValue(c, ref);
63       return SGPath(std::string(naStr_data(na_str), naStr_len(na_str)));
64   }
65
66   //----------------------------------------------------------------------------
67   Hash from_nasal_helper(naContext c, naRef ref, const Hash*)
68   {
69     if( !naIsHash(ref) )
70       throw bad_nasal_cast("Not a hash");
71
72     return Hash(ref, c);
73   }
74
75   //----------------------------------------------------------------------------
76   String from_nasal_helper(naContext c, naRef ref, const String*)
77   {
78     if( !naIsString(ref) )
79       throw bad_nasal_cast("Not a string");
80
81     return String(ref);
82   }
83
84 } // namespace nasal