rhodes 1.5.5 → 2.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (529) hide show
  1. data/CHANGELOG +5 -0
  2. data/Manifest.txt +214 -32
  3. data/Rakefile +33 -10
  4. data/bin/upgrade-rhodes-app +0 -1
  5. data/lib/build/compileERB/bb.rb +2 -2
  6. data/lib/build/compileERB/default.rb +7 -5
  7. data/lib/build/jake.rb +1 -1
  8. data/lib/extensions/digest-md5/ext.yml +1 -1
  9. data/lib/extensions/digest-md5/ext/Rakefile +35 -36
  10. data/lib/extensions/digest-md5/ext/build.bat +1 -0
  11. data/lib/extensions/digest-md5/ext/digest-md5.vcproj +203 -0
  12. data/lib/extensions/digest-sha1/ext.yml +1 -1
  13. data/lib/extensions/digest/ext.yml +1 -1
  14. data/lib/extensions/digest/ext/Rakefile +35 -39
  15. data/lib/extensions/digest/ext/build.bat +1 -2
  16. data/lib/extensions/digest/ext/digest.vcproj +203 -0
  17. data/lib/framework/rho/render.rb +79 -22
  18. data/lib/framework/rho/rho.rb +294 -56
  19. data/lib/framework/rho/rhoapplication.rb +10 -0
  20. data/lib/framework/rho/rhofsconnector.rb +2 -6
  21. data/lib/framework/rho/rhoutils.rb +56 -14
  22. data/lib/framework/rho/rhoviewhelpers.rb +2 -0
  23. data/lib/framework/rhodes.rb +2 -2
  24. data/lib/framework/rhom/rhom.rb +42 -15
  25. data/lib/framework/rhom/rhom_db_adapter.rb +165 -159
  26. data/lib/framework/rhom/rhom_object.rb +0 -1
  27. data/lib/framework/rhom/rhom_object_factory.rb +343 -166
  28. data/lib/framework/rhom/rhom_source.rb +28 -15
  29. data/lib/framework/version.rb +2 -2
  30. data/lib/rhodes.rb +2 -2
  31. data/platform/android/Rhodes/AndroidManifest.xml +2 -2
  32. data/platform/android/Rhodes/gen/com/rhomobile/rhodes/R.java +39 -44
  33. data/platform/android/Rhodes/jni/include/JNIRhodes.h +1 -1
  34. data/platform/android/Rhodes/jni/include/details/rhojava.inc +23 -20
  35. data/platform/android/Rhodes/jni/include/jni/com_rhomobile_rhodes_RhoMenu.h +61 -0
  36. data/platform/android/Rhodes/jni/include/jni/com_rhomobile_rhodes_Rhodes.h +16 -0
  37. data/platform/android/Rhodes/jni/include/jni/com_rhomobile_rhodes_alert_Alert.h +21 -0
  38. data/platform/android/Rhodes/jni/include/sslimpl.h +1 -1
  39. data/platform/android/Rhodes/jni/src/alert.cpp +32 -5
  40. data/platform/android/Rhodes/jni/src/callbacks.cpp +51 -21
  41. data/platform/android/Rhodes/jni/src/mapview.cpp +3 -8
  42. data/platform/android/Rhodes/jni/src/menu.cpp +70 -0
  43. data/platform/android/Rhodes/jni/src/navbar.cpp +16 -0
  44. data/platform/android/Rhodes/jni/src/rhodes.cpp +37 -0
  45. data/platform/android/Rhodes/jni/src/sslimpl.cpp +3 -3
  46. data/platform/android/Rhodes/jni/src/webview.cpp +21 -7
  47. data/platform/android/Rhodes/res/drawable/alert_alert.png +0 -0
  48. data/platform/android/Rhodes/res/drawable/alert_info.png +0 -0
  49. data/platform/android/Rhodes/res/drawable/alert_question.png +0 -0
  50. data/platform/android/Rhodes/res/drawable/camera.png +0 -0
  51. data/platform/android/Rhodes/res/layout/camera.xml +18 -3
  52. data/platform/android/Rhodes/res/menu/options.xml +0 -10
  53. data/platform/android/Rhodes/src/com/rhomobile/rhodes/AndroidR.java +5 -10
  54. data/platform/android/Rhodes/src/com/rhomobile/rhodes/Capabilities.java +12 -0
  55. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoMenu.java +105 -0
  56. data/platform/android/Rhodes/src/com/rhomobile/rhodes/Rhodes.java +157 -122
  57. data/platform/android/Rhodes/src/com/rhomobile/rhodes/SplashScreen.java +7 -58
  58. data/platform/android/Rhodes/src/com/rhomobile/rhodes/WebView.java +16 -0
  59. data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/Alert.java +220 -17
  60. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/Camera.java +22 -4
  61. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java +44 -25
  62. data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocation.java +10 -0
  63. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/MainView.java +3 -0
  64. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +10 -21
  65. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/TabbedMainView.java +15 -12
  66. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/Phonebook.java +44 -0
  67. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +47 -3
  68. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/MailUriHandler.java +13 -6
  69. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/TelUriHandler.java +11 -5
  70. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/UriHandler.java +1 -4
  71. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/VideoUriHandler.java +61 -0
  72. data/platform/android/build/RhodesSRC_build.files +3 -0
  73. data/platform/android/build/android.rake +173 -60
  74. data/platform/android/build/androidcommon.rb +1 -2
  75. data/platform/android/build/librhocommon_build.files +5 -0
  76. data/platform/android/build/librhodes_build.files +2 -0
  77. data/platform/android/build/libruby_build.files +2 -1
  78. data/platform/bb/Hsqldb/Hsqldb.jdp +0 -3
  79. data/platform/bb/Hsqldb/src/com/rho/db/FileUtilBB.java +1 -1
  80. data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBResult.java +16 -1
  81. data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBRowResult.java +5 -0
  82. data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBStorage.java +25 -4
  83. data/platform/bb/Hsqldb/src/com/rho/db/Journal.java +1 -1
  84. data/platform/bb/Hsqldb/src/com/rho/file/FileAccessBB.java +0 -1
  85. data/platform/bb/Hsqldb/src/j2me/math/Number.java +6 -3
  86. data/platform/bb/Hsqldb/src/org/hsqldb/CompiledStatementExecutor.java +2 -1
  87. data/platform/bb/Hsqldb/src/org/hsqldb/Expression.java +1 -0
  88. data/platform/bb/Hsqldb/src/org/hsqldb/Parser.java +1 -0
  89. data/platform/bb/Hsqldb/src/org/hsqldb/Result.java +2 -0
  90. data/platform/bb/Hsqldb/src/org/hsqldb/Select.java +12 -6
  91. data/platform/bb/Hsqldb/src/org/hsqldb/Session.java +19 -12
  92. data/platform/bb/Hsqldb/src/org/hsqldb/Table.java +10 -4
  93. data/platform/bb/Hsqldb/src/org/hsqldb/Token.java +10 -2
  94. data/platform/bb/Hsqldb/src/org/hsqldb/Tokenizer.java +3 -3
  95. data/platform/bb/Hsqldb/src/org/hsqldb/lib/java/JavaSystem.java +1 -1
  96. data/platform/bb/Hsqldb/src/org/hsqldb/persist/HsqlProperties.java +2 -1
  97. data/platform/bb/Hsqldb/src/org/hsqldb/persist/ScaledRAFile.java +1 -1
  98. data/platform/bb/Hsqldb/src/org/hsqldb/scriptio/ScriptReaderText.java +1 -1
  99. data/platform/bb/Hsqldb/src/org/hsqldb/scriptio/ScriptWriterBase.java +1 -1
  100. data/platform/bb/RubyVM/RubyVM.jdp +9 -10
  101. data/platform/bb/build/RubyVM_build.files +9 -7
  102. data/platform/bb/build/bb.rake +13 -3
  103. data/platform/bb/build/hsqldb_build.files +0 -2
  104. data/platform/bb/build/rhodes_build.files +5 -2
  105. data/platform/bb/rhodes/platform/4.7/com/rho/RhoMainScreen.java +8 -0
  106. data/platform/bb/rhodes/platform/5.0/com/rho/BrowserAdapter5.java +154 -0
  107. data/platform/bb/rhodes/platform/5.0/com/rho/RhoMainScreen.java +8 -0
  108. data/platform/bb/rhodes/platform/common/com/rho/BrowserAdapter5.java +28 -0
  109. data/platform/bb/rhodes/rhodes.jdp +12 -7
  110. data/platform/bb/rhodes/src/com/rho/BrowserAdapter.java +331 -0
  111. data/platform/bb/rhodes/src/com/rho/BrowserAdapter5.java +28 -0
  112. data/platform/bb/rhodes/src/com/rho/IBrowserAdapter.java +10 -0
  113. data/platform/bb/rhodes/src/com/rho/RhoMainScreen.java +4 -0
  114. data/platform/bb/rhodes/src/com/rho/RhoRubyHelper.java +2 -4
  115. data/platform/bb/rhodes/src/com/rho/{Jsr75File.java → file/Jsr75File.java} +83 -36
  116. data/platform/bb/{Hsqldb → rhodes}/src/com/rho/file/Jsr75RAFileImpl.java +0 -1
  117. data/platform/bb/{Hsqldb → rhodes}/src/com/rho/file/PersistRAFileImpl.java +0 -2
  118. data/platform/bb/rhodes/src/com/rho/net/NetworkAccess.java +8 -10
  119. data/platform/bb/rhodes/src/com/rho/rubyext/Alert.java +1 -1
  120. data/platform/bb/rhodes/src/com/rho/rubyext/GeoLocation.java +39 -0
  121. data/platform/bb/rhodes/src/com/rho/rubyext/System.java +63 -2
  122. data/platform/bb/rhodes/src/com/rho/rubyext/WebView.java +100 -0
  123. data/platform/bb/rhodes/src/rhomobile/LogScreen.java +1 -1
  124. data/platform/bb/rhodes/src/rhomobile/PushListeningThread.java +13 -1
  125. data/platform/bb/rhodes/src/rhomobile/RhodesApplication.java +138 -492
  126. data/platform/bb/rhodes/src/rhomobile/SecondaryResourceFetchThread.java +11 -2
  127. data/platform/bb/rhodes/src/rhomobile/Utilities.java +14 -10
  128. data/platform/bb/rhodes/src/rhomobile/camera/CameraScreen.java +5 -14
  129. data/platform/bb/rhodes/src/rhomobile/camera/ImageBrowserScreen.java +1 -1
  130. data/platform/bb/rhodes/src/rhomobile/mapview/GoogleMapField.java +2 -2
  131. data/platform/iphone/Classes/AppManager/AppManager.m +37 -14
  132. data/platform/iphone/Classes/Camera/PickImageDelegate.h +15 -4
  133. data/platform/iphone/Classes/Camera/PickImageDelegate.m +53 -50
  134. data/platform/iphone/Classes/DateTimePicker.h +17 -0
  135. data/platform/iphone/Classes/DateTimePicker.m +35 -0
  136. data/platform/iphone/Classes/GeoLocation/LocationController.m +2 -3
  137. data/platform/iphone/Classes/LogOptionsController.m +3 -2
  138. data/platform/iphone/Classes/LogViewController.m +4 -2
  139. data/platform/iphone/Classes/MapView/GoogleGeocoder.m +12 -20
  140. data/platform/iphone/Classes/MapView/MapAnnotation.h +9 -13
  141. data/platform/iphone/Classes/MapView/MapAnnotation.m +17 -65
  142. data/platform/iphone/Classes/MapView/MapViewController.h +1 -7
  143. data/platform/iphone/Classes/MapView/MapViewController.m +51 -25
  144. data/platform/iphone/Classes/NativeBar.h +0 -12
  145. data/platform/iphone/Classes/NativeBar.m +121 -2
  146. data/platform/iphone/Classes/NavBar.h +16 -0
  147. data/platform/iphone/Classes/NavBar.m +115 -0
  148. data/platform/iphone/Classes/RhoAlert.h +19 -0
  149. data/platform/iphone/Classes/RhoAlert.m +258 -0
  150. data/platform/iphone/Classes/RhoDelegate.m +1 -0
  151. data/platform/iphone/Classes/RhoMainView.h +33 -0
  152. data/platform/iphone/Classes/Rhodes.h +56 -0
  153. data/platform/iphone/Classes/Rhodes.m +533 -0
  154. data/platform/iphone/Classes/RingtoneManager.h +17 -0
  155. data/platform/iphone/Classes/RingtoneManager.m +73 -0
  156. data/platform/iphone/Classes/SimpleMainView.h +30 -0
  157. data/platform/iphone/Classes/SimpleMainView.m +380 -0
  158. data/platform/iphone/Classes/TabbedMainView.h +24 -0
  159. data/platform/iphone/Classes/TabbedMainView.m +202 -0
  160. data/platform/iphone/Classes/WebView.m +123 -0
  161. data/platform/iphone/Classes/rho/net/NetRequestImpl.m +2 -2
  162. data/platform/iphone/Classes/rho/net/sslimpl.cpp +13 -1
  163. data/platform/iphone/Classes/rho/net/sslimpl.h +1 -1
  164. data/platform/iphone/Info.plist +1 -1
  165. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +44 -0
  166. data/platform/iphone/main.m +1 -2
  167. data/platform/iphone/rbuild/iphone.rake +8 -16
  168. data/platform/iphone/rhoextlib/dosyscall.c +1 -1
  169. data/platform/iphone/rhoextlib/rhoextlib.xcodeproj/project.pbxproj +6 -4
  170. data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +12 -0
  171. data/platform/iphone/rhorunner.xcodeproj/project.pbxproj +97 -62
  172. data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +12 -0
  173. data/platform/osx/Rhodes Launcher/launch.rb +14 -21
  174. data/platform/shared/common/AppMenu.cpp +122 -0
  175. data/platform/shared/common/AppMenu.h +46 -0
  176. data/platform/shared/common/PosixThreadImpl.cpp +1 -1
  177. data/platform/shared/common/RhoConf.cpp +27 -2
  178. data/platform/shared/common/RhoConf.h +5 -0
  179. data/platform/shared/common/RhoFilePath.h +21 -0
  180. data/platform/shared/common/RhoStd.h +44 -5
  181. data/platform/shared/common/RhoTime.h +20 -7
  182. data/platform/shared/common/RhodesApp.cpp +236 -177
  183. data/platform/shared/common/RhodesApp.h +36 -13
  184. data/platform/shared/common/SplashScreen.cpp +2 -2
  185. data/platform/shared/common/StringConverter.h +10 -11
  186. data/platform/shared/common/rhoparams.c +0 -6
  187. data/platform/shared/curl/lib/rhossl.c +3 -2
  188. data/platform/shared/curl/lib/url.c +0 -5
  189. data/platform/shared/db/DBAdapter.cpp +304 -81
  190. data/platform/shared/db/DBAdapter.h +24 -7
  191. data/platform/shared/db/DBAttrManager.cpp +83 -30
  192. data/platform/shared/db/DBAttrManager.h +6 -0
  193. data/platform/shared/db/DBResult.h +15 -4
  194. data/platform/shared/json/JSONIterator.cpp +100 -3
  195. data/platform/shared/json/JSONIterator.h +28 -3
  196. data/platform/shared/net/AsyncHttp.cpp +25 -22
  197. data/platform/shared/net/AsyncHttp.h +10 -6
  198. data/platform/shared/net/CURLNetRequest.cpp +115 -36
  199. data/platform/shared/net/CURLNetRequest.h +6 -0
  200. data/platform/shared/net/HttpServer.cpp +6 -4
  201. data/platform/shared/net/HttpServer.h +0 -1
  202. data/platform/shared/net/INetRequest.h +19 -3
  203. data/platform/shared/net/URI.cpp +2 -2
  204. data/platform/shared/net/ssl.cpp +2 -2
  205. data/platform/shared/net/ssl.h +2 -2
  206. data/platform/shared/ruby/ext/alert/alert.i +14 -2
  207. data/platform/shared/ruby/ext/alert/alert_wrap.c +40 -20
  208. data/platform/shared/ruby/ext/asynchttp/asynchttp.i +8 -8
  209. data/platform/shared/ruby/ext/asynchttp/asynchttp_wrap.c +112 -16
  210. data/platform/shared/ruby/ext/geolocation/geolocation.i +16 -12
  211. data/platform/shared/ruby/ext/geolocation/geolocation_wrap.c +481 -125
  212. data/platform/shared/ruby/ext/navbar/navbar.i +20 -0
  213. data/platform/shared/ruby/ext/navbar/navbar_wrap.c +1859 -0
  214. data/platform/shared/ruby/ext/rho/extensions.c +1 -1
  215. data/platform/shared/ruby/ext/rho/rhoruby.c +32 -2
  216. data/platform/shared/ruby/ext/rho/rhoruby.h +7 -2
  217. data/platform/shared/ruby/ext/rhoconf/rhoconf.i +4 -0
  218. data/platform/shared/ruby/ext/rhoconf/rhoconf_wrap.c +31 -0
  219. data/platform/shared/ruby/ext/sqlite3_api/sqlite3_api_wrap.c +188 -3226
  220. data/platform/shared/ruby/ext/syncengine/syncengine.i +14 -25
  221. data/platform/shared/ruby/ext/syncengine/syncengine_wrap.c +96 -104
  222. data/platform/shared/ruby/ext/system/system.i +12 -0
  223. data/platform/shared/ruby/ext/system/system_wrap.c +101 -7
  224. data/platform/shared/ruby/ext/webview/webview.i +20 -15
  225. data/platform/shared/ruby/ext/webview/webview_wrap.c +42 -16
  226. data/platform/shared/ruby/thread_pthread.c +4 -4
  227. data/platform/shared/ruby/thread_win32.c +4 -4
  228. data/platform/shared/ruby/wince/io_wce.c +0 -1
  229. data/platform/shared/rubyJVM/src/com/rho/FilePath.java +18 -2
  230. data/platform/shared/rubyJVM/src/com/rho/IRhoRubyHelper.java +1 -0
  231. data/platform/shared/rubyJVM/src/com/rho/Properties.java +9 -0
  232. data/platform/shared/rubyJVM/src/com/rho/RhoClassFactory.java +2 -3
  233. data/platform/shared/rubyJVM/src/com/rho/RhoConf.java +47 -8
  234. data/platform/shared/rubyJVM/src/com/rho/RhoLogConf.java +1 -0
  235. data/platform/shared/rubyJVM/src/com/rho/RhoLogFileSink.java +1 -0
  236. data/platform/shared/rubyJVM/src/com/rho/RhoRuby.java +43 -5
  237. data/platform/shared/rubyJVM/src/com/rho/RhodesApp.java +98 -3
  238. data/platform/shared/rubyJVM/src/com/rho/db/DBAdapter.java +460 -175
  239. data/platform/shared/rubyJVM/src/com/rho/db/DBAttrManager.java +81 -33
  240. data/platform/shared/rubyJVM/src/com/rho/db/IDBCallback.java +3 -5
  241. data/platform/shared/rubyJVM/src/com/rho/db/IDBResult.java +2 -0
  242. data/platform/shared/rubyJVM/src/com/rho/db/IDBStorage.java +2 -0
  243. data/platform/shared/rubyJVM/src/com/rho/{IFile.java → file/IFile.java} +1 -1
  244. data/platform/shared/rubyJVM/src/com/rho/{IFileAccess.java → file/IFileAccess.java} +1 -1
  245. data/platform/shared/rubyJVM/src/com/rho/{IRAFile.java → file/IRAFile.java} +1 -1
  246. data/platform/{bb/Hsqldb/src/com/rho/db → shared/rubyJVM/src/com/rho/file}/RandomAccessFile.java +1 -2
  247. data/platform/shared/rubyJVM/src/com/rho/{SimpleFile.java → file/SimpleFile.java} +5 -1
  248. data/platform/shared/rubyJVM/src/com/rho/net/AsyncHttp.java +23 -18
  249. data/platform/shared/rubyJVM/src/com/rho/net/NetRequest.java +167 -250
  250. data/platform/shared/rubyJVM/src/com/rho/net/RhoConnection.java +100 -30
  251. data/platform/shared/rubyJVM/src/com/rho/net/URI.java +0 -1
  252. data/platform/shared/rubyJVM/src/com/rho/sync/ClientRegister.java +30 -33
  253. data/platform/shared/rubyJVM/src/com/rho/sync/ISyncProtocol.java +20 -0
  254. data/platform/shared/rubyJVM/src/com/rho/sync/JSONEntry.java +5 -0
  255. data/platform/shared/rubyJVM/src/com/rho/sync/JSONStructIterator.java +74 -0
  256. data/platform/shared/rubyJVM/src/com/rho/sync/SyncEngine.java +486 -257
  257. data/platform/shared/rubyJVM/src/com/rho/sync/SyncNotify.java +89 -58
  258. data/platform/shared/rubyJVM/src/com/rho/sync/SyncProtocol_3.java +79 -0
  259. data/platform/shared/rubyJVM/src/com/rho/sync/SyncSource.java +634 -495
  260. data/platform/shared/rubyJVM/src/com/rho/sync/SyncThread.java +74 -90
  261. data/platform/shared/rubyJVM/src/com/xruby/GeneratedMethods/RubySymbol_Methods.java +1 -0
  262. data/platform/shared/rubyJVM/src/com/xruby/runtime/builtin/RubyThread.java +6 -0
  263. data/platform/shared/rubyJVM/src/com/xruby/runtime/lang/RubyRuntime.java +6 -2
  264. data/platform/shared/rubyJVM/src/com/xruby/runtime/lang/RubySymbol.java +17 -1
  265. data/platform/shared/rubyJVM/src/com/xruby/runtime/lang/RubyValue.java +1 -0
  266. data/platform/shared/rubyJVM/src/org/json/me/JSONObject.java +3 -0
  267. data/platform/shared/rubyext/GeoLocation.cpp +23 -0
  268. data/platform/shared/rubyext/GeoLocation.h +2 -0
  269. data/platform/shared/rubyext/RhoRuby.cpp +31 -0
  270. data/platform/shared/rubyext/RhoRuby.h +32 -0
  271. data/platform/shared/rubyext/System.cpp +14 -3
  272. data/platform/shared/rubyext/WebView.h +21 -0
  273. data/platform/shared/sync/ClientRegister.cpp +23 -28
  274. data/platform/shared/sync/ClientRegister.h +6 -2
  275. data/platform/shared/sync/ISyncProtocol.h +29 -0
  276. data/platform/shared/sync/SyncEngine.cpp +450 -190
  277. data/platform/shared/sync/SyncEngine.h +28 -38
  278. data/platform/shared/sync/SyncNotify.cpp +43 -41
  279. data/platform/shared/sync/SyncNotify.h +7 -7
  280. data/platform/shared/sync/SyncProtocol_3.h +86 -0
  281. data/platform/shared/sync/SyncSource.cpp +535 -371
  282. data/platform/shared/sync/SyncSource.h +48 -55
  283. data/platform/shared/sync/SyncThread.cpp +59 -103
  284. data/platform/shared/sync/SyncThread.h +10 -23
  285. data/platform/shared/unzip/unzip.cpp +3 -2
  286. data/platform/shared/unzip/unzip.h +5 -1
  287. data/platform/shared/wtl80/include/atlapp.h +10 -10
  288. data/platform/wm/RhoLib/RhoLib.vcproj +32 -0
  289. data/platform/wm/build/build_inf.js +40 -3
  290. data/platform/wm/build/wm.rake +95 -9
  291. data/platform/wm/rhodes/Alert.cpp +4 -0
  292. data/platform/wm/rhodes/DateTimePicker.cpp +183 -0
  293. data/platform/wm/rhodes/DateTimePicker.h +100 -0
  294. data/platform/wm/rhodes/MainWindow.cpp +222 -209
  295. data/platform/wm/rhodes/MainWindow.h +28 -35
  296. data/platform/wm/rhodes/Rhodes.cpp +20 -60
  297. data/platform/wm/rhodes/Rhodes.rc +41 -7
  298. data/platform/wm/rhodes/Utils.cpp +65 -0
  299. data/platform/wm/rhodes/Utils.h +9 -0
  300. data/platform/wm/rhodes/camera/Camera.cpp +2 -2
  301. data/platform/wm/rhodes/menubar.cpp +2 -33
  302. data/platform/wm/rhodes/menubar.h +0 -14
  303. data/platform/wm/rhodes/resource.h +13 -11
  304. data/platform/wm/rhodes/rho/net/NetRequest.cpp +16 -35
  305. data/platform/wm/rhodes/rho/net/NetRequest.h +8 -2
  306. data/platform/wm/rhodes/rho/net/NetRequestImpl.cpp +264 -46
  307. data/platform/wm/rhodes/rho/net/NetRequestImpl.h +14 -4
  308. data/platform/wm/rhodes/rho/rubyext/GeoLocationImpl.cpp +1 -1
  309. data/platform/wm/rhodes/rho/rubyext/GeoLocationImpl.h +1 -1
  310. data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +77 -4
  311. data/platform/wm/rhodes/rho/rubyext/WebView.cpp +63 -0
  312. data/platform/wm/rhodes/rhodes.vcproj +20 -66
  313. data/platform/wm/rhodes/stdafx.h +22 -0
  314. data/platform/wm/rubylib/rubylib.vcproj +4 -0
  315. data/platform/wm/syncengine/syncengine.vcproj +8 -0
  316. data/platform/wm/tools/detool.sln +66 -0
  317. data/platform/wm/tools/detool/DEMComInterface.tlb +0 -0
  318. data/platform/wm/tools/detool/ReadMe.txt +33 -0
  319. data/platform/wm/tools/detool/detool.cpp +559 -0
  320. data/platform/wm/tools/detool/detool.h +5 -0
  321. data/platform/wm/tools/detool/detool.vcproj +233 -0
  322. data/platform/wm/tools/detool/stdafx.cpp +8 -0
  323. data/platform/wm/tools/detool/stdafx.h +15 -0
  324. data/platform/wm/tools/detool/targetver.h +24 -0
  325. data/platform/wm/tools/rhosetup/ReadMe.txt +41 -0
  326. data/platform/wm/tools/rhosetup/rhosetup.cpp +52 -0
  327. data/platform/wm/tools/rhosetup/rhosetup.vcproj +641 -0
  328. data/platform/wm/tools/rhosetup/stdafx.cpp +8 -0
  329. data/platform/wm/tools/rhosetup/stdafx.h +59 -0
  330. data/rakefile.rb +33 -10
  331. data/res/build-tools/db/syncdb.schema +25 -23
  332. data/res/build-tools/db/syncdb.triggers +1 -1
  333. data/res/build-tools/detool.exe +0 -0
  334. data/res/build-tools/rhosetup.dll +0 -0
  335. data/res/generators/rhogen.rb +27 -22
  336. data/res/generators/templates/application/app/Settings/controller.rb +3 -1
  337. data/res/generators/templates/application/app/Settings/home.bb.erb +17 -0
  338. data/res/generators/templates/application/app/Settings/home.erb +21 -12
  339. data/res/generators/templates/application/app/Settings/index.bb.erb +32 -0
  340. data/res/generators/templates/application/app/Settings/index.erb +44 -15
  341. data/res/generators/templates/application/app/Settings/login.bb.erb +35 -0
  342. data/res/generators/templates/application/app/Settings/login.erb +29 -30
  343. data/res/generators/templates/application/app/Settings/reset.bb.erb +15 -0
  344. data/res/generators/templates/application/app/Settings/reset.erb +16 -13
  345. data/res/generators/templates/application/app/Settings/wait.bb.erb +3 -0
  346. data/res/generators/templates/application/app/Settings/wait.erb +4 -4
  347. data/res/generators/templates/application/app/application.rb +8 -0
  348. data/res/generators/templates/application/app/helpers/browser_helper.rb +13 -0
  349. data/res/generators/templates/application/app/index.bb.erb +26 -0
  350. data/res/generators/templates/application/app/index.erb +21 -12
  351. data/res/generators/templates/application/app/layout.erb +9 -11
  352. data/res/generators/templates/application/public/css/android.css +285 -0
  353. data/res/generators/templates/application/public/css/blackberry.css +85 -78
  354. data/res/generators/templates/application/public/css/iphone.css +286 -296
  355. data/res/generators/templates/application/public/css/webkit.css +34 -0
  356. data/res/generators/templates/application/public/css/windows_mobile.css +208 -0
  357. data/res/generators/templates/application/public/icons/Read me first - license.txt +14 -0
  358. data/res/generators/templates/application/public/icons/about.png +0 -0
  359. data/res/generators/templates/application/public/icons/airplane.png +0 -0
  360. data/res/generators/templates/application/public/icons/baby.png +0 -0
  361. data/res/generators/templates/application/public/icons/badge.png +0 -0
  362. data/res/generators/templates/application/public/icons/bandaid.png +0 -0
  363. data/res/generators/templates/application/public/icons/bar-chart.png +0 -0
  364. data/res/generators/templates/application/public/icons/battery.png +0 -0
  365. data/res/generators/templates/application/public/icons/beaker.png +0 -0
  366. data/res/generators/templates/application/public/icons/beaker2.png +0 -0
  367. data/res/generators/templates/application/public/icons/beermug.png +0 -0
  368. data/res/generators/templates/application/public/icons/bird.png +0 -0
  369. data/res/generators/templates/application/public/icons/book.png +0 -0
  370. data/res/generators/templates/application/public/icons/bookmark.png +0 -0
  371. data/res/generators/templates/application/public/icons/brightness.png +0 -0
  372. data/res/generators/templates/application/public/icons/bug.png +0 -0
  373. data/res/generators/templates/application/public/icons/cabinet.png +0 -0
  374. data/res/generators/templates/application/public/icons/calendar.png +0 -0
  375. data/res/generators/templates/application/public/icons/camera.png +0 -0
  376. data/res/generators/templates/application/public/icons/changeName.rb +22 -0
  377. data/res/generators/templates/application/public/icons/chat2.png +0 -0
  378. data/res/generators/templates/application/public/icons/chicken.png +0 -0
  379. data/res/generators/templates/application/public/icons/clock.png +0 -0
  380. data/res/generators/templates/application/public/icons/cloud.png +0 -0
  381. data/res/generators/templates/application/public/icons/coffee.png +0 -0
  382. data/res/generators/templates/application/public/icons/compass.png +0 -0
  383. data/res/generators/templates/application/public/icons/contrast.png +0 -0
  384. data/res/generators/templates/application/public/icons/dashboard.png +0 -0
  385. data/res/generators/templates/application/public/icons/display.png +0 -0
  386. data/res/generators/templates/application/public/icons/dogpaw.png +0 -0
  387. data/res/generators/templates/application/public/icons/download.png +0 -0
  388. data/res/generators/templates/application/public/icons/dumbbell.png +0 -0
  389. data/res/generators/templates/application/public/icons/ekg.png +0 -0
  390. data/res/generators/templates/application/public/icons/envelope.png +0 -0
  391. data/res/generators/templates/application/public/icons/equalizer.png +0 -0
  392. data/res/generators/templates/application/public/icons/eye.png +0 -0
  393. data/res/generators/templates/application/public/icons/film-roll.png +0 -0
  394. data/res/generators/templates/application/public/icons/flag.png +0 -0
  395. data/res/generators/templates/application/public/icons/fork-and-knife.png +0 -0
  396. data/res/generators/templates/application/public/icons/fuel.png +0 -0
  397. data/res/generators/templates/application/public/icons/gameplan.png +0 -0
  398. data/res/generators/templates/application/public/icons/gear.png +0 -0
  399. data/res/generators/templates/application/public/icons/gear2.png +0 -0
  400. data/res/generators/templates/application/public/icons/gift.png +0 -0
  401. data/res/generators/templates/application/public/icons/heart.png +0 -0
  402. data/res/generators/templates/application/public/icons/house.png +0 -0
  403. data/res/generators/templates/application/public/icons/inbox.png +0 -0
  404. data/res/generators/templates/application/public/icons/index-cards.png +0 -0
  405. data/res/generators/templates/application/public/icons/iphone.png +0 -0
  406. data/res/generators/templates/application/public/icons/ipod.png +0 -0
  407. data/res/generators/templates/application/public/icons/key.png +0 -0
  408. data/res/generators/templates/application/public/icons/lifebuoy.png +0 -0
  409. data/res/generators/templates/application/public/icons/lightbulb.png +0 -0
  410. data/res/generators/templates/application/public/icons/line-chart.png +0 -0
  411. data/res/generators/templates/application/public/icons/location.png +0 -0
  412. data/res/generators/templates/application/public/icons/lock.png +0 -0
  413. data/res/generators/templates/application/public/icons/loopback.png +0 -0
  414. data/res/generators/templates/application/public/icons/magnifying-glass.png +0 -0
  415. data/res/generators/templates/application/public/icons/map-marker.png +0 -0
  416. data/res/generators/templates/application/public/icons/map.png +0 -0
  417. data/res/generators/templates/application/public/icons/medical-bag.png +0 -0
  418. data/res/generators/templates/application/public/icons/medical.png +0 -0
  419. data/res/generators/templates/application/public/icons/microphone.png +0 -0
  420. data/res/generators/templates/application/public/icons/movie1.png +0 -0
  421. data/res/generators/templates/application/public/icons/movie2.png +0 -0
  422. data/res/generators/templates/application/public/icons/network.png +0 -0
  423. data/res/generators/templates/application/public/icons/note.png +0 -0
  424. data/res/generators/templates/application/public/icons/outlet.png +0 -0
  425. data/res/generators/templates/application/public/icons/palette.png +0 -0
  426. data/res/generators/templates/application/public/icons/paperclip.png +0 -0
  427. data/res/generators/templates/application/public/icons/phone.png +0 -0
  428. data/res/generators/templates/application/public/icons/photos.png +0 -0
  429. data/res/generators/templates/application/public/icons/piano.png +0 -0
  430. data/res/generators/templates/application/public/icons/picture-frame.png +0 -0
  431. data/res/generators/templates/application/public/icons/pill.png +0 -0
  432. data/res/generators/templates/application/public/icons/pin.png +0 -0
  433. data/res/generators/templates/application/public/icons/pinetree.png +0 -0
  434. data/res/generators/templates/application/public/icons/planet.png +0 -0
  435. data/res/generators/templates/application/public/icons/puzzle.png +0 -0
  436. data/res/generators/templates/application/public/icons/radar.png +0 -0
  437. data/res/generators/templates/application/public/icons/redo.png +0 -0
  438. data/res/generators/templates/application/public/icons/refresh.png +0 -0
  439. data/res/generators/templates/application/public/icons/runner.png +0 -0
  440. data/res/generators/templates/application/public/icons/shoebox.png +0 -0
  441. data/res/generators/templates/application/public/icons/shopping-bag.png +0 -0
  442. data/res/generators/templates/application/public/icons/shopping-cart.png +0 -0
  443. data/res/generators/templates/application/public/icons/shuffle.png +0 -0
  444. data/res/generators/templates/application/public/icons/signpost.png +0 -0
  445. data/res/generators/templates/application/public/icons/skull-n-crossbones.png +0 -0
  446. data/res/generators/templates/application/public/icons/skull.png +0 -0
  447. data/res/generators/templates/application/public/icons/sliders.png +0 -0
  448. data/res/generators/templates/application/public/icons/spraycan.png +0 -0
  449. data/res/generators/templates/application/public/icons/squiggle.png +0 -0
  450. data/res/generators/templates/application/public/icons/star.png +0 -0
  451. data/res/generators/templates/application/public/icons/stopwatch.png +0 -0
  452. data/res/generators/templates/application/public/icons/suitcase.png +0 -0
  453. data/res/generators/templates/application/public/icons/tag.png +0 -0
  454. data/res/generators/templates/application/public/icons/tags.png +0 -0
  455. data/res/generators/templates/application/public/icons/target.png +0 -0
  456. data/res/generators/templates/application/public/icons/testtube.png +0 -0
  457. data/res/generators/templates/application/public/icons/thermometer.png +0 -0
  458. data/res/generators/templates/application/public/icons/toolbox.png +0 -0
  459. data/res/generators/templates/application/public/icons/trophy.png +0 -0
  460. data/res/generators/templates/application/public/icons/tshirt.png +0 -0
  461. data/res/generators/templates/application/public/icons/tv.png +0 -0
  462. data/res/generators/templates/application/public/icons/umbrella.png +0 -0
  463. data/res/generators/templates/application/public/icons/walk.png +0 -0
  464. data/res/generators/templates/application/public/icons/weather.png +0 -0
  465. data/res/generators/templates/application/public/icons/widescreen.png +0 -0
  466. data/res/generators/templates/application/public/icons/wineglass.png +0 -0
  467. data/res/generators/templates/application/public/icons/zap.png +0 -0
  468. data/res/generators/templates/application/public/images/android/btn_check_off.png +0 -0
  469. data/res/generators/templates/application/public/images/android/btn_check_on.png +0 -0
  470. data/res/generators/templates/application/public/images/android/btn_radio_off.png +0 -0
  471. data/res/generators/templates/application/public/images/android/btn_radio_on.png +0 -0
  472. data/res/generators/templates/application/public/images/android/ic_menu_more.png +0 -0
  473. data/res/generators/templates/application/public/images/iphone/disclosure.png +0 -0
  474. data/res/generators/templates/application/public/images/iphone/disclosure_detail.png +0 -0
  475. data/res/generators/templates/application/public/images/iphone/radiobutton.png +0 -0
  476. data/res/generators/templates/application/public/images/iphone/select.png +0 -0
  477. data/res/generators/templates/application/public/images/iphone/switch.png +0 -0
  478. data/res/generators/templates/application/public/images/listArrow.png +0 -0
  479. data/res/generators/templates/application/public/images/listArrowDown.png +0 -0
  480. data/res/generators/templates/model/controller.rb +2 -0
  481. data/res/generators/templates/model/edit.bb.erb +24 -0
  482. data/res/generators/templates/model/edit.erb +21 -25
  483. data/res/generators/templates/model/index.bb.erb +21 -0
  484. data/res/generators/templates/model/index.erb +28 -14
  485. data/res/generators/templates/model/new.bb.erb +24 -0
  486. data/res/generators/templates/model/new.erb +20 -20
  487. data/res/generators/templates/model/show.bb.erb +21 -0
  488. data/res/generators/templates/model/show.erb +15 -15
  489. data/rhobuild.yml +37 -0
  490. data/rhodes.gemspec +1 -1
  491. data/spec/framework_spec/app/Account/config.rb +57 -1
  492. data/spec/framework_spec/app/Case/config.rb +1 -1
  493. data/spec/framework_spec/app/Customer/config.rb +1 -1
  494. data/spec/framework_spec/app/Product/config.rb +15 -1
  495. data/spec/framework_spec/app/spec/fixtures/object_values.txt +90 -90
  496. data/spec/framework_spec/app/spec/pagination/fixtures/object_values.txt +91 -91
  497. data/spec/framework_spec/app/spec/rho_spec.rb +1 -1
  498. data/spec/framework_spec/app/spec/rhom_object_spec.rb +47 -28
  499. data/spec/framework_spec/app/spec/rhom_spec.rb +8 -8
  500. data/spec/framework_spec/app/spec/spec_helper.rb +13 -5
  501. data/spec/framework_spec/app/spec_runner.rb +5 -4
  502. data/spec/framework_spec/public/css/base.css +0 -1
  503. data/spec/framework_spec/public/css/iphone.css +0 -1
  504. data/spec/framework_spec/rhoconfig.txt +3 -1
  505. metadata +220 -37
  506. data/platform/bb/rhodes/src/rhomobile/WebView.java +0 -90
  507. data/platform/iphone/Classes/BarItem.h +0 -27
  508. data/platform/iphone/Classes/BarItem.m +0 -32
  509. data/platform/iphone/Classes/JSString.h +0 -12
  510. data/platform/iphone/Classes/JSString.m +0 -7
  511. data/platform/iphone/Classes/RhoRunnerAppDelegate.h +0 -48
  512. data/platform/iphone/Classes/RhoRunnerAppDelegate.m +0 -617
  513. data/platform/iphone/Classes/Server/ServerHost.h +0 -81
  514. data/platform/iphone/Classes/Server/ServerHost.m +0 -597
  515. data/platform/iphone/Classes/Server/WebViewUrl.h +0 -13
  516. data/platform/iphone/Classes/Server/WebViewUrl.m +0 -8
  517. data/platform/iphone/Classes/TabBarDelegate.h +0 -39
  518. data/platform/iphone/Classes/TabBarDelegate.m +0 -151
  519. data/platform/iphone/Classes/Utils/unzip.cpp +0 -4328
  520. data/platform/iphone/Classes/Utils/unzip.h +0 -234
  521. data/platform/iphone/Classes/WebViewController.h +0 -59
  522. data/platform/iphone/Classes/WebViewController.m +0 -472
  523. data/platform/wm/rhodes/GetURLDialog.cpp +0 -64
  524. data/platform/wm/rhodes/GetURLDialog.h +0 -39
  525. data/res/generators/templates/application/public/css/base.css +0 -39
  526. data/res/generators/templates/application/public/css/rho.css +0 -3
  527. data/res/generators/templates/application/public/css/xhtml.css +0 -114
  528. data/spec/framework_spec/app/Question/config.rb +0 -3
  529. data/spec/generator_spec/source_generator_spec.rb +0 -27
@@ -0,0 +1,20 @@
1
+ /* nativebar.i */
2
+ %module NavBar
3
+ %{
4
+ #include "ext/rho/rhoruby.h"
5
+ extern void create_navbar(rho_param *p);
6
+ #define create create_navbar
7
+ extern void remove_navbar();
8
+ #define remove remove_navbar
9
+ %}
10
+
11
+ %typemap(in) (rho_param *p) {
12
+ $1 = valueToRhoParam($input);
13
+ }
14
+
15
+ %typemap(freearg) (rho_param *p) {
16
+ rho_param_free($1);
17
+ }
18
+
19
+ extern void create(rho_param *p);
20
+ extern void remove();
@@ -0,0 +1,1859 @@
1
+ /* ----------------------------------------------------------------------------
2
+ * This file was automatically generated by SWIG (http://www.swig.org).
3
+ * Version 1.3.31
4
+ *
5
+ * This file is not intended to be easily readable and contains a number of
6
+ * coding conventions designed to improve portability and efficiency. Do not make
7
+ * changes to this file unless you know what you are doing--modify the SWIG
8
+ * interface file instead.
9
+ * ----------------------------------------------------------------------------- */
10
+
11
+ #define SWIGRUBY
12
+ /* -----------------------------------------------------------------------------
13
+ * This section contains generic SWIG labels for method/variable
14
+ * declarations/attributes, and other compiler dependent labels.
15
+ * ----------------------------------------------------------------------------- */
16
+
17
+ /* template workaround for compilers that cannot correctly implement the C++ standard */
18
+ #ifndef SWIGTEMPLATEDISAMBIGUATOR
19
+ # if defined(__SUNPRO_CC)
20
+ # if (__SUNPRO_CC <= 0x560)
21
+ # define SWIGTEMPLATEDISAMBIGUATOR template
22
+ # else
23
+ # define SWIGTEMPLATEDISAMBIGUATOR
24
+ # endif
25
+ # else
26
+ # define SWIGTEMPLATEDISAMBIGUATOR
27
+ # endif
28
+ #endif
29
+
30
+ /* inline attribute */
31
+ #ifndef SWIGINLINE
32
+ # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
33
+ # define SWIGINLINE inline
34
+ # else
35
+ # define SWIGINLINE
36
+ # endif
37
+ #endif
38
+
39
+ /* attribute recognised by some compilers to avoid 'unused' warnings */
40
+ #ifndef SWIGUNUSED
41
+ # if defined(__GNUC__)
42
+ # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
43
+ # define SWIGUNUSED __attribute__ ((__unused__))
44
+ # else
45
+ # define SWIGUNUSED
46
+ # endif
47
+ # elif defined(__ICC)
48
+ # define SWIGUNUSED __attribute__ ((__unused__))
49
+ # else
50
+ # define SWIGUNUSED
51
+ # endif
52
+ #endif
53
+
54
+ #ifndef SWIGUNUSEDPARM
55
+ # ifdef __cplusplus
56
+ # define SWIGUNUSEDPARM(p)
57
+ # else
58
+ # define SWIGUNUSEDPARM(p) p SWIGUNUSED
59
+ # endif
60
+ #endif
61
+
62
+ /* internal SWIG method */
63
+ #ifndef SWIGINTERN
64
+ # define SWIGINTERN static SWIGUNUSED
65
+ #endif
66
+
67
+ /* internal inline SWIG method */
68
+ #ifndef SWIGINTERNINLINE
69
+ # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
70
+ #endif
71
+
72
+ /* exporting methods */
73
+ #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
74
+ # ifndef GCC_HASCLASSVISIBILITY
75
+ # define GCC_HASCLASSVISIBILITY
76
+ # endif
77
+ #endif
78
+
79
+ #ifndef SWIGEXPORT
80
+ # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
81
+ # if defined(STATIC_LINKED)
82
+ # define SWIGEXPORT
83
+ # else
84
+ # define SWIGEXPORT __declspec(dllexport)
85
+ # endif
86
+ # else
87
+ # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
88
+ # define SWIGEXPORT __attribute__ ((visibility("default")))
89
+ # else
90
+ # define SWIGEXPORT
91
+ # endif
92
+ # endif
93
+ #endif
94
+
95
+ /* calling conventions for Windows */
96
+ #ifndef SWIGSTDCALL
97
+ # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
98
+ # define SWIGSTDCALL __stdcall
99
+ # else
100
+ # define SWIGSTDCALL
101
+ # endif
102
+ #endif
103
+
104
+ /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
105
+ #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
106
+ # define _CRT_SECURE_NO_DEPRECATE
107
+ #endif
108
+
109
+ /* -----------------------------------------------------------------------------
110
+ * This section contains generic SWIG labels for method/variable
111
+ * declarations/attributes, and other compiler dependent labels.
112
+ * ----------------------------------------------------------------------------- */
113
+
114
+ /* template workaround for compilers that cannot correctly implement the C++ standard */
115
+ #ifndef SWIGTEMPLATEDISAMBIGUATOR
116
+ # if defined(__SUNPRO_CC)
117
+ # if (__SUNPRO_CC <= 0x560)
118
+ # define SWIGTEMPLATEDISAMBIGUATOR template
119
+ # else
120
+ # define SWIGTEMPLATEDISAMBIGUATOR
121
+ # endif
122
+ # else
123
+ # define SWIGTEMPLATEDISAMBIGUATOR
124
+ # endif
125
+ #endif
126
+
127
+ /* inline attribute */
128
+ #ifndef SWIGINLINE
129
+ # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
130
+ # define SWIGINLINE inline
131
+ # else
132
+ # define SWIGINLINE
133
+ # endif
134
+ #endif
135
+
136
+ /* attribute recognised by some compilers to avoid 'unused' warnings */
137
+ #ifndef SWIGUNUSED
138
+ # if defined(__GNUC__)
139
+ # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
140
+ # define SWIGUNUSED __attribute__ ((__unused__))
141
+ # else
142
+ # define SWIGUNUSED
143
+ # endif
144
+ # elif defined(__ICC)
145
+ # define SWIGUNUSED __attribute__ ((__unused__))
146
+ # else
147
+ # define SWIGUNUSED
148
+ # endif
149
+ #endif
150
+
151
+ #ifndef SWIGUNUSEDPARM
152
+ # ifdef __cplusplus
153
+ # define SWIGUNUSEDPARM(p)
154
+ # else
155
+ # define SWIGUNUSEDPARM(p) p SWIGUNUSED
156
+ # endif
157
+ #endif
158
+
159
+ /* internal SWIG method */
160
+ #ifndef SWIGINTERN
161
+ # define SWIGINTERN static SWIGUNUSED
162
+ #endif
163
+
164
+ /* internal inline SWIG method */
165
+ #ifndef SWIGINTERNINLINE
166
+ # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
167
+ #endif
168
+
169
+ /* exporting methods */
170
+ #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
171
+ # ifndef GCC_HASCLASSVISIBILITY
172
+ # define GCC_HASCLASSVISIBILITY
173
+ # endif
174
+ #endif
175
+
176
+ #ifndef SWIGEXPORT
177
+ # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
178
+ # if defined(STATIC_LINKED)
179
+ # define SWIGEXPORT
180
+ # else
181
+ # define SWIGEXPORT __declspec(dllexport)
182
+ # endif
183
+ # else
184
+ # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
185
+ # define SWIGEXPORT __attribute__ ((visibility("default")))
186
+ # else
187
+ # define SWIGEXPORT
188
+ # endif
189
+ # endif
190
+ #endif
191
+
192
+ /* calling conventions for Windows */
193
+ #ifndef SWIGSTDCALL
194
+ # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
195
+ # define SWIGSTDCALL __stdcall
196
+ # else
197
+ # define SWIGSTDCALL
198
+ # endif
199
+ #endif
200
+
201
+ /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
202
+ #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
203
+ # define _CRT_SECURE_NO_DEPRECATE
204
+ #endif
205
+
206
+ /* -----------------------------------------------------------------------------
207
+ * swigrun.swg
208
+ *
209
+ * This file contains generic CAPI SWIG runtime support for pointer
210
+ * type checking.
211
+ * ----------------------------------------------------------------------------- */
212
+
213
+ /* This should only be incremented when either the layout of swig_type_info changes,
214
+ or for whatever reason, the runtime changes incompatibly */
215
+ #define SWIG_RUNTIME_VERSION "3"
216
+
217
+ /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
218
+ #ifdef SWIG_TYPE_TABLE
219
+ # define SWIG_QUOTE_STRING(x) #x
220
+ # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
221
+ # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
222
+ #else
223
+ # define SWIG_TYPE_TABLE_NAME
224
+ #endif
225
+
226
+ /*
227
+ You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
228
+ creating a static or dynamic library from the swig runtime code.
229
+ In 99.9% of the cases, swig just needs to declare them as 'static'.
230
+
231
+ But only do this if is strictly necessary, ie, if you have problems
232
+ with your compiler or so.
233
+ */
234
+
235
+ #ifndef SWIGRUNTIME
236
+ # define SWIGRUNTIME SWIGINTERN
237
+ #endif
238
+
239
+ #ifndef SWIGRUNTIMEINLINE
240
+ # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
241
+ #endif
242
+
243
+ /* Generic buffer size */
244
+ #ifndef SWIG_BUFFER_SIZE
245
+ # define SWIG_BUFFER_SIZE 1024
246
+ #endif
247
+
248
+ /* Flags for pointer conversions */
249
+ #define SWIG_POINTER_DISOWN 0x1
250
+
251
+ /* Flags for new pointer objects */
252
+ #define SWIG_POINTER_OWN 0x1
253
+
254
+
255
+ /*
256
+ Flags/methods for returning states.
257
+
258
+ The swig conversion methods, as ConvertPtr, return and integer
259
+ that tells if the conversion was successful or not. And if not,
260
+ an error code can be returned (see swigerrors.swg for the codes).
261
+
262
+ Use the following macros/flags to set or process the returning
263
+ states.
264
+
265
+ In old swig versions, you usually write code as:
266
+
267
+ if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
268
+ // success code
269
+ } else {
270
+ //fail code
271
+ }
272
+
273
+ Now you can be more explicit as:
274
+
275
+ int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
276
+ if (SWIG_IsOK(res)) {
277
+ // success code
278
+ } else {
279
+ // fail code
280
+ }
281
+
282
+ that seems to be the same, but now you can also do
283
+
284
+ Type *ptr;
285
+ int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
286
+ if (SWIG_IsOK(res)) {
287
+ // success code
288
+ if (SWIG_IsNewObj(res) {
289
+ ...
290
+ delete *ptr;
291
+ } else {
292
+ ...
293
+ }
294
+ } else {
295
+ // fail code
296
+ }
297
+
298
+ I.e., now SWIG_ConvertPtr can return new objects and you can
299
+ identify the case and take care of the deallocation. Of course that
300
+ requires also to SWIG_ConvertPtr to return new result values, as
301
+
302
+ int SWIG_ConvertPtr(obj, ptr,...) {
303
+ if (<obj is ok>) {
304
+ if (<need new object>) {
305
+ *ptr = <ptr to new allocated object>;
306
+ return SWIG_NEWOBJ;
307
+ } else {
308
+ *ptr = <ptr to old object>;
309
+ return SWIG_OLDOBJ;
310
+ }
311
+ } else {
312
+ return SWIG_BADOBJ;
313
+ }
314
+ }
315
+
316
+ Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
317
+ more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
318
+ swig errors code.
319
+
320
+ Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
321
+ allows to return the 'cast rank', for example, if you have this
322
+
323
+ int food(double)
324
+ int fooi(int);
325
+
326
+ and you call
327
+
328
+ food(1) // cast rank '1' (1 -> 1.0)
329
+ fooi(1) // cast rank '0'
330
+
331
+ just use the SWIG_AddCast()/SWIG_CheckState()
332
+
333
+
334
+ */
335
+ #define SWIG_OK (0)
336
+ #define SWIG_ERROR (-1)
337
+ #define SWIG_IsOK(r) (r >= 0)
338
+ #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
339
+
340
+ /* The CastRankLimit says how many bits are used for the cast rank */
341
+ #define SWIG_CASTRANKLIMIT (1 << 8)
342
+ /* The NewMask denotes the object was created (using new/malloc) */
343
+ #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
344
+ /* The TmpMask is for in/out typemaps that use temporal objects */
345
+ #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
346
+ /* Simple returning values */
347
+ #define SWIG_BADOBJ (SWIG_ERROR)
348
+ #define SWIG_OLDOBJ (SWIG_OK)
349
+ #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
350
+ #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
351
+ /* Check, add and del mask methods */
352
+ #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
353
+ #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
354
+ #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
355
+ #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
356
+ #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
357
+ #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
358
+
359
+
360
+ /* Cast-Rank Mode */
361
+ #if defined(SWIG_CASTRANK_MODE)
362
+ # ifndef SWIG_TypeRank
363
+ # define SWIG_TypeRank unsigned long
364
+ # endif
365
+ # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
366
+ # define SWIG_MAXCASTRANK (2)
367
+ # endif
368
+ # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
369
+ # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
370
+ SWIGINTERNINLINE int SWIG_AddCast(int r) {
371
+ return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
372
+ }
373
+ SWIGINTERNINLINE int SWIG_CheckState(int r) {
374
+ return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
375
+ }
376
+ #else /* no cast-rank mode */
377
+ # define SWIG_AddCast
378
+ # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
379
+ #endif
380
+
381
+
382
+
383
+
384
+ #include <string.h>
385
+
386
+ #ifdef __cplusplus
387
+ extern "C" {
388
+ #endif
389
+
390
+ typedef void *(*swig_converter_func)(void *);
391
+ typedef struct swig_type_info *(*swig_dycast_func)(void **);
392
+
393
+ /* Structure to store inforomation on one type */
394
+ typedef struct swig_type_info {
395
+ const char *name; /* mangled name of this type */
396
+ const char *str; /* human readable name of this type */
397
+ swig_dycast_func dcast; /* dynamic cast function down a hierarchy */
398
+ struct swig_cast_info *cast; /* linked list of types that can cast into this type */
399
+ void *clientdata; /* language specific type data */
400
+ int owndata; /* flag if the structure owns the clientdata */
401
+ } swig_type_info;
402
+
403
+ /* Structure to store a type and conversion function used for casting */
404
+ typedef struct swig_cast_info {
405
+ swig_type_info *type; /* pointer to type that is equivalent to this type */
406
+ swig_converter_func converter; /* function to cast the void pointers */
407
+ struct swig_cast_info *next; /* pointer to next cast in linked list */
408
+ struct swig_cast_info *prev; /* pointer to the previous cast */
409
+ } swig_cast_info;
410
+
411
+ /* Structure used to store module information
412
+ * Each module generates one structure like this, and the runtime collects
413
+ * all of these structures and stores them in a circularly linked list.*/
414
+ typedef struct swig_module_info {
415
+ swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */
416
+ size_t size; /* Number of types in this module */
417
+ struct swig_module_info *next; /* Pointer to next element in circularly linked list */
418
+ swig_type_info **type_initial; /* Array of initially generated type structures */
419
+ swig_cast_info **cast_initial; /* Array of initially generated casting structures */
420
+ void *clientdata; /* Language specific module data */
421
+ } swig_module_info;
422
+
423
+ /*
424
+ Compare two type names skipping the space characters, therefore
425
+ "char*" == "char *" and "Class<int>" == "Class<int >", etc.
426
+
427
+ Return 0 when the two name types are equivalent, as in
428
+ strncmp, but skipping ' '.
429
+ */
430
+ SWIGRUNTIME int
431
+ SWIG_TypeNameComp(const char *f1, const char *l1,
432
+ const char *f2, const char *l2) {
433
+ for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
434
+ while ((*f1 == ' ') && (f1 != l1)) ++f1;
435
+ while ((*f2 == ' ') && (f2 != l2)) ++f2;
436
+ if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1;
437
+ }
438
+ return (l1 - f1) - (l2 - f2);
439
+ }
440
+
441
+ /*
442
+ Check type equivalence in a name list like <name1>|<name2>|...
443
+ Return 0 if not equal, 1 if equal
444
+ */
445
+ SWIGRUNTIME int
446
+ SWIG_TypeEquiv(const char *nb, const char *tb) {
447
+ int equiv = 0;
448
+ const char* te = tb + strlen(tb);
449
+ const char* ne = nb;
450
+ while (!equiv && *ne) {
451
+ for (nb = ne; *ne; ++ne) {
452
+ if (*ne == '|') break;
453
+ }
454
+ equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0;
455
+ if (*ne) ++ne;
456
+ }
457
+ return equiv;
458
+ }
459
+
460
+ /*
461
+ Check type equivalence in a name list like <name1>|<name2>|...
462
+ Return 0 if equal, -1 if nb < tb, 1 if nb > tb
463
+ */
464
+ SWIGRUNTIME int
465
+ SWIG_TypeCompare(const char *nb, const char *tb) {
466
+ int equiv = 0;
467
+ const char* te = tb + strlen(tb);
468
+ const char* ne = nb;
469
+ while (!equiv && *ne) {
470
+ for (nb = ne; *ne; ++ne) {
471
+ if (*ne == '|') break;
472
+ }
473
+ equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0;
474
+ if (*ne) ++ne;
475
+ }
476
+ return equiv;
477
+ }
478
+
479
+
480
+ /* think of this as a c++ template<> or a scheme macro */
481
+ #define SWIG_TypeCheck_Template(comparison, ty) \
482
+ if (ty) { \
483
+ swig_cast_info *iter = ty->cast; \
484
+ while (iter) { \
485
+ if (comparison) { \
486
+ if (iter == ty->cast) return iter; \
487
+ /* Move iter to the top of the linked list */ \
488
+ iter->prev->next = iter->next; \
489
+ if (iter->next) \
490
+ iter->next->prev = iter->prev; \
491
+ iter->next = ty->cast; \
492
+ iter->prev = 0; \
493
+ if (ty->cast) ty->cast->prev = iter; \
494
+ ty->cast = iter; \
495
+ return iter; \
496
+ } \
497
+ iter = iter->next; \
498
+ } \
499
+ } \
500
+ return 0
501
+
502
+ /*
503
+ Check the typename
504
+ */
505
+ SWIGRUNTIME swig_cast_info *
506
+ SWIG_TypeCheck(const char *c, swig_type_info *ty) {
507
+ SWIG_TypeCheck_Template(strcmp(iter->type->name, c) == 0, ty);
508
+ }
509
+
510
+ /* Same as previous function, except strcmp is replaced with a pointer comparison */
511
+ SWIGRUNTIME swig_cast_info *
512
+ SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *into) {
513
+ SWIG_TypeCheck_Template(iter->type == from, into);
514
+ }
515
+
516
+ /*
517
+ Cast a pointer up an inheritance hierarchy
518
+ */
519
+ SWIGRUNTIMEINLINE void *
520
+ SWIG_TypeCast(swig_cast_info *ty, void *ptr) {
521
+ return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr);
522
+ }
523
+
524
+ /*
525
+ Dynamic pointer casting. Down an inheritance hierarchy
526
+ */
527
+ SWIGRUNTIME swig_type_info *
528
+ SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {
529
+ swig_type_info *lastty = ty;
530
+ if (!ty || !ty->dcast) return ty;
531
+ while (ty && (ty->dcast)) {
532
+ ty = (*ty->dcast)(ptr);
533
+ if (ty) lastty = ty;
534
+ }
535
+ return lastty;
536
+ }
537
+
538
+ /*
539
+ Return the name associated with this type
540
+ */
541
+ SWIGRUNTIMEINLINE const char *
542
+ SWIG_TypeName(const swig_type_info *ty) {
543
+ return ty->name;
544
+ }
545
+
546
+ /*
547
+ Return the pretty name associated with this type,
548
+ that is an unmangled type name in a form presentable to the user.
549
+ */
550
+ SWIGRUNTIME const char *
551
+ SWIG_TypePrettyName(const swig_type_info *type) {
552
+ /* The "str" field contains the equivalent pretty names of the
553
+ type, separated by vertical-bar characters. We choose
554
+ to print the last name, as it is often (?) the most
555
+ specific. */
556
+ if (!type) return NULL;
557
+ if (type->str != NULL) {
558
+ const char *last_name = type->str;
559
+ const char *s;
560
+ for (s = type->str; *s; s++)
561
+ if (*s == '|') last_name = s+1;
562
+ return last_name;
563
+ }
564
+ else
565
+ return type->name;
566
+ }
567
+
568
+ /*
569
+ Set the clientdata field for a type
570
+ */
571
+ SWIGRUNTIME void
572
+ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
573
+ swig_cast_info *cast = ti->cast;
574
+ /* if (ti->clientdata == clientdata) return; */
575
+ ti->clientdata = clientdata;
576
+
577
+ while (cast) {
578
+ if (!cast->converter) {
579
+ swig_type_info *tc = cast->type;
580
+ if (!tc->clientdata) {
581
+ SWIG_TypeClientData(tc, clientdata);
582
+ }
583
+ }
584
+ cast = cast->next;
585
+ }
586
+ }
587
+ SWIGRUNTIME void
588
+ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
589
+ SWIG_TypeClientData(ti, clientdata);
590
+ ti->owndata = 1;
591
+ }
592
+
593
+ /*
594
+ Search for a swig_type_info structure only by mangled name
595
+ Search is a O(log #types)
596
+
597
+ We start searching at module start, and finish searching when start == end.
598
+ Note: if start == end at the beginning of the function, we go all the way around
599
+ the circular list.
600
+ */
601
+ SWIGRUNTIME swig_type_info *
602
+ SWIG_MangledTypeQueryModule(swig_module_info *start,
603
+ swig_module_info *end,
604
+ const char *name) {
605
+ swig_module_info *iter = start;
606
+ do {
607
+ if (iter->size) {
608
+ register size_t l = 0;
609
+ register size_t r = iter->size - 1;
610
+ do {
611
+ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
612
+ register size_t i = (l + r) >> 1;
613
+ const char *iname = iter->types[i]->name;
614
+ if (iname) {
615
+ register int compare = strcmp(name, iname);
616
+ if (compare == 0) {
617
+ return iter->types[i];
618
+ } else if (compare < 0) {
619
+ if (i) {
620
+ r = i - 1;
621
+ } else {
622
+ break;
623
+ }
624
+ } else if (compare > 0) {
625
+ l = i + 1;
626
+ }
627
+ } else {
628
+ break; /* should never happen */
629
+ }
630
+ } while (l <= r);
631
+ }
632
+ iter = iter->next;
633
+ } while (iter != end);
634
+ return 0;
635
+ }
636
+
637
+ /*
638
+ Search for a swig_type_info structure for either a mangled name or a human readable name.
639
+ It first searches the mangled names of the types, which is a O(log #types)
640
+ If a type is not found it then searches the human readable names, which is O(#types).
641
+
642
+ We start searching at module start, and finish searching when start == end.
643
+ Note: if start == end at the beginning of the function, we go all the way around
644
+ the circular list.
645
+ */
646
+ SWIGRUNTIME swig_type_info *
647
+ SWIG_TypeQueryModule(swig_module_info *start,
648
+ swig_module_info *end,
649
+ const char *name) {
650
+ /* STEP 1: Search the name field using binary search */
651
+ swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
652
+ if (ret) {
653
+ return ret;
654
+ } else {
655
+ /* STEP 2: If the type hasn't been found, do a complete search
656
+ of the str field (the human readable name) */
657
+ swig_module_info *iter = start;
658
+ do {
659
+ register size_t i = 0;
660
+ for (; i < iter->size; ++i) {
661
+ if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
662
+ return iter->types[i];
663
+ }
664
+ iter = iter->next;
665
+ } while (iter != end);
666
+ }
667
+
668
+ /* neither found a match */
669
+ return 0;
670
+ }
671
+
672
+ /*
673
+ Pack binary data into a string
674
+ */
675
+ SWIGRUNTIME char *
676
+ SWIG_PackData(char *c, void *ptr, size_t sz) {
677
+ static const char hex[17] = "0123456789abcdef";
678
+ register const unsigned char *u = (unsigned char *) ptr;
679
+ register const unsigned char *eu = u + sz;
680
+ for (; u != eu; ++u) {
681
+ register unsigned char uu = *u;
682
+ *(c++) = hex[(uu & 0xf0) >> 4];
683
+ *(c++) = hex[uu & 0xf];
684
+ }
685
+ return c;
686
+ }
687
+
688
+ /*
689
+ Unpack binary data from a string
690
+ */
691
+ SWIGRUNTIME const char *
692
+ SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
693
+ register unsigned char *u = (unsigned char *) ptr;
694
+ register const unsigned char *eu = u + sz;
695
+ for (; u != eu; ++u) {
696
+ register char d = *(c++);
697
+ register unsigned char uu;
698
+ if ((d >= '0') && (d <= '9'))
699
+ uu = ((d - '0') << 4);
700
+ else if ((d >= 'a') && (d <= 'f'))
701
+ uu = ((d - ('a'-10)) << 4);
702
+ else
703
+ return (char *) 0;
704
+ d = *(c++);
705
+ if ((d >= '0') && (d <= '9'))
706
+ uu |= (d - '0');
707
+ else if ((d >= 'a') && (d <= 'f'))
708
+ uu |= (d - ('a'-10));
709
+ else
710
+ return (char *) 0;
711
+ *u = uu;
712
+ }
713
+ return c;
714
+ }
715
+
716
+ /*
717
+ Pack 'void *' into a string buffer.
718
+ */
719
+ SWIGRUNTIME char *
720
+ SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {
721
+ char *r = buff;
722
+ if ((2*sizeof(void *) + 2) > bsz) return 0;
723
+ *(r++) = '_';
724
+ r = SWIG_PackData(r,&ptr,sizeof(void *));
725
+ if (strlen(name) + 1 > (bsz - (r - buff))) return 0;
726
+ strcpy(r,name);
727
+ return buff;
728
+ }
729
+
730
+ SWIGRUNTIME const char *
731
+ SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {
732
+ if (*c != '_') {
733
+ if (strcmp(c,"NULL") == 0) {
734
+ *ptr = (void *) 0;
735
+ return name;
736
+ } else {
737
+ return 0;
738
+ }
739
+ }
740
+ return SWIG_UnpackData(++c,ptr,sizeof(void *));
741
+ }
742
+
743
+ SWIGRUNTIME char *
744
+ SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {
745
+ char *r = buff;
746
+ size_t lname = (name ? strlen(name) : 0);
747
+ if ((2*sz + 2 + lname) > bsz) return 0;
748
+ *(r++) = '_';
749
+ r = SWIG_PackData(r,ptr,sz);
750
+ if (lname) {
751
+ strncpy(r,name,lname+1);
752
+ } else {
753
+ *r = 0;
754
+ }
755
+ return buff;
756
+ }
757
+
758
+ SWIGRUNTIME const char *
759
+ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
760
+ if (*c != '_') {
761
+ if (strcmp(c,"NULL") == 0) {
762
+ memset(ptr,0,sz);
763
+ return name;
764
+ } else {
765
+ return 0;
766
+ }
767
+ }
768
+ return SWIG_UnpackData(++c,ptr,sz);
769
+ }
770
+
771
+ #ifdef __cplusplus
772
+ }
773
+ #endif
774
+
775
+ /* Errors in SWIG */
776
+ #define SWIG_UnknownError -1
777
+ #define SWIG_IOError -2
778
+ #define SWIG_RuntimeError -3
779
+ #define SWIG_IndexError -4
780
+ #define SWIG_TypeError -5
781
+ #define SWIG_DivisionByZero -6
782
+ #define SWIG_OverflowError -7
783
+ #define SWIG_SyntaxError -8
784
+ #define SWIG_ValueError -9
785
+ #define SWIG_SystemError -10
786
+ #define SWIG_AttributeError -11
787
+ #define SWIG_MemoryError -12
788
+ #define SWIG_NullReferenceError -13
789
+
790
+
791
+
792
+ #include <ruby.h>
793
+
794
+ /* Ruby 1.7 defines NUM2LL(), LL2NUM() and ULL2NUM() macros */
795
+ #ifndef NUM2LL
796
+ #define NUM2LL(x) NUM2LONG((x))
797
+ #endif
798
+ #ifndef LL2NUM
799
+ #define LL2NUM(x) INT2NUM((long) (x))
800
+ #endif
801
+ #ifndef ULL2NUM
802
+ #define ULL2NUM(x) UINT2NUM((unsigned long) (x))
803
+ #endif
804
+
805
+ /* Ruby 1.7 doesn't (yet) define NUM2ULL() */
806
+ #ifndef NUM2ULL
807
+ #ifdef HAVE_LONG_LONG
808
+ #define NUM2ULL(x) rb_num2ull((x))
809
+ #else
810
+ #define NUM2ULL(x) NUM2ULONG(x)
811
+ #endif
812
+ #endif
813
+
814
+ /* RSTRING_LEN, etc are new in Ruby 1.9, but ->ptr and ->len no longer work */
815
+ /* Define these for older versions so we can just write code the new way */
816
+ #ifndef RSTRING_LEN
817
+ # define RSTRING_LEN(x) RSTRING(x)->len
818
+ #endif
819
+ #ifndef RSTRING_PTR
820
+ # define RSTRING_PTR(x) RSTRING(x)->ptr
821
+ #endif
822
+ #ifndef RARRAY_LEN
823
+ # define RARRAY_LEN(x) RARRAY(x)->len
824
+ #endif
825
+ #ifndef RARRAY_PTR
826
+ # define RARRAY_PTR(x) RARRAY(x)->ptr
827
+ #endif
828
+
829
+ /*
830
+ * Need to be very careful about how these macros are defined, especially
831
+ * when compiling C++ code or C code with an ANSI C compiler.
832
+ *
833
+ * VALUEFUNC(f) is a macro used to typecast a C function that implements
834
+ * a Ruby method so that it can be passed as an argument to API functions
835
+ * like rb_define_method() and rb_define_singleton_method().
836
+ *
837
+ * VOIDFUNC(f) is a macro used to typecast a C function that implements
838
+ * either the "mark" or "free" stuff for a Ruby Data object, so that it
839
+ * can be passed as an argument to API functions like Data_Wrap_Struct()
840
+ * and Data_Make_Struct().
841
+ */
842
+
843
+ #ifdef __cplusplus
844
+ # ifndef RUBY_METHOD_FUNC /* These definitions should work for Ruby 1.4.6 */
845
+ # define PROTECTFUNC(f) ((VALUE (*)()) f)
846
+ # define VALUEFUNC(f) ((VALUE (*)()) f)
847
+ # define VOIDFUNC(f) ((void (*)()) f)
848
+ # else
849
+ # ifndef ANYARGS /* These definitions should work for Ruby 1.6 */
850
+ # define PROTECTFUNC(f) ((VALUE (*)()) f)
851
+ # define VALUEFUNC(f) ((VALUE (*)()) f)
852
+ # define VOIDFUNC(f) ((RUBY_DATA_FUNC) f)
853
+ # else /* These definitions should work for Ruby 1.7+ */
854
+ # define PROTECTFUNC(f) ((VALUE (*)(VALUE)) f)
855
+ # define VALUEFUNC(f) ((VALUE (*)(ANYARGS)) f)
856
+ # define VOIDFUNC(f) ((RUBY_DATA_FUNC) f)
857
+ # endif
858
+ # endif
859
+ #else
860
+ # define VALUEFUNC(f) (f)
861
+ # define VOIDFUNC(f) (f)
862
+ #endif
863
+
864
+ /* Don't use for expressions have side effect */
865
+ #ifndef RB_STRING_VALUE
866
+ #define RB_STRING_VALUE(s) (TYPE(s) == T_STRING ? (s) : (*(volatile VALUE *)&(s) = rb_str_to_str(s)))
867
+ #endif
868
+ #ifndef StringValue
869
+ #define StringValue(s) RB_STRING_VALUE(s)
870
+ #endif
871
+ #ifndef StringValuePtr
872
+ #define StringValuePtr(s) RSTRING_PTR(RB_STRING_VALUE(s))
873
+ #endif
874
+ #ifndef StringValueLen
875
+ #define StringValueLen(s) RSTRING_LEN(RB_STRING_VALUE(s))
876
+ #endif
877
+ #ifndef SafeStringValue
878
+ #define SafeStringValue(v) do {\
879
+ StringValue(v);\
880
+ rb_check_safe_str(v);\
881
+ } while (0)
882
+ #endif
883
+
884
+ #ifndef HAVE_RB_DEFINE_ALLOC_FUNC
885
+ #define rb_define_alloc_func(klass, func) rb_define_singleton_method((klass), "new", VALUEFUNC((func)), -1)
886
+ #define rb_undef_alloc_func(klass) rb_undef_method(CLASS_OF((klass)), "new")
887
+ #endif
888
+
889
+
890
+ /* -----------------------------------------------------------------------------
891
+ * error manipulation
892
+ * ----------------------------------------------------------------------------- */
893
+
894
+
895
+ /* Define some additional error types */
896
+ #define SWIG_ObjectPreviouslyDeletedError -100
897
+
898
+
899
+ /* Define custom exceptions for errors that do not map to existing Ruby
900
+ exceptions. Note this only works for C++ since a global cannot be
901
+ initialized by a funtion in C. For C, fallback to rb_eRuntimeError.*/
902
+
903
+ SWIGINTERN VALUE
904
+ getNullReferenceError(void) {
905
+ static int init = 0;
906
+ static VALUE rb_eNullReferenceError ;
907
+ if (!init) {
908
+ init = 1;
909
+ rb_eNullReferenceError = rb_define_class("NullReferenceError", rb_eRuntimeError);
910
+ }
911
+ return rb_eNullReferenceError;
912
+ }
913
+
914
+ SWIGINTERN VALUE
915
+ getObjectPreviouslyDeletedError(void) {
916
+ static int init = 0;
917
+ static VALUE rb_eObjectPreviouslyDeleted ;
918
+ if (!init) {
919
+ init = 1;
920
+ rb_eObjectPreviouslyDeleted = rb_define_class("ObjectPreviouslyDeleted", rb_eRuntimeError);
921
+ }
922
+ return rb_eObjectPreviouslyDeleted;
923
+ }
924
+
925
+
926
+ SWIGINTERN VALUE
927
+ SWIG_Ruby_ErrorType(int SWIG_code) {
928
+ VALUE type;
929
+ switch (SWIG_code) {
930
+ case SWIG_MemoryError:
931
+ type = rb_eNoMemError;
932
+ break;
933
+ case SWIG_IOError:
934
+ type = rb_eIOError;
935
+ break;
936
+ case SWIG_RuntimeError:
937
+ type = rb_eRuntimeError;
938
+ break;
939
+ case SWIG_IndexError:
940
+ type = rb_eIndexError;
941
+ break;
942
+ case SWIG_TypeError:
943
+ type = rb_eTypeError;
944
+ break;
945
+ case SWIG_DivisionByZero:
946
+ type = rb_eZeroDivError;
947
+ break;
948
+ case SWIG_OverflowError:
949
+ type = rb_eRangeError;
950
+ break;
951
+ case SWIG_SyntaxError:
952
+ type = rb_eSyntaxError;
953
+ break;
954
+ case SWIG_ValueError:
955
+ type = rb_eArgError;
956
+ break;
957
+ case SWIG_SystemError:
958
+ type = rb_eFatal;
959
+ break;
960
+ case SWIG_AttributeError:
961
+ type = rb_eRuntimeError;
962
+ break;
963
+ case SWIG_NullReferenceError:
964
+ type = getNullReferenceError();
965
+ break;
966
+ case SWIG_ObjectPreviouslyDeletedError:
967
+ type = getObjectPreviouslyDeletedError();
968
+ break;
969
+ case SWIG_UnknownError:
970
+ type = rb_eRuntimeError;
971
+ break;
972
+ default:
973
+ type = rb_eRuntimeError;
974
+ }
975
+ return type;
976
+ }
977
+
978
+
979
+
980
+
981
+ /* -----------------------------------------------------------------------------
982
+ * See the LICENSE file for information on copyright, usage and redistribution
983
+ * of SWIG, and the README file for authors - http://www.swig.org/release.html.
984
+ *
985
+ * rubytracking.swg
986
+ *
987
+ * This file contains support for tracking mappings from
988
+ * Ruby objects to C++ objects. This functionality is needed
989
+ * to implement mark functions for Ruby's mark and sweep
990
+ * garbage collector.
991
+ * ----------------------------------------------------------------------------- */
992
+
993
+ #ifdef __cplusplus
994
+ extern "C" {
995
+ #endif
996
+
997
+
998
+ /* Global Ruby hash table to store Trackings from C/C++
999
+ structs to Ruby Objects. */
1000
+ static VALUE swig_ruby_trackings;
1001
+
1002
+ /* Global variable that stores a reference to the ruby
1003
+ hash table delete function. */
1004
+ static ID swig_ruby_hash_delete = 0;
1005
+
1006
+ /* Setup a Ruby hash table to store Trackings */
1007
+ SWIGRUNTIME void SWIG_RubyInitializeTrackings(void) {
1008
+ /* Create a ruby hash table to store Trackings from C++
1009
+ objects to Ruby objects. Also make sure to tell
1010
+ the garabage collector about the hash table. */
1011
+ swig_ruby_trackings = rb_hash_new();
1012
+ rb_gc_register_address(&swig_ruby_trackings);
1013
+
1014
+ /* Now store a reference to the hash table delete function
1015
+ so that we only have to look it up once.*/
1016
+ swig_ruby_hash_delete = rb_intern("delete");
1017
+ }
1018
+
1019
+ /* Get a Ruby number to reference a pointer */
1020
+ SWIGRUNTIME VALUE SWIG_RubyPtrToReference(void* ptr) {
1021
+ /* We cast the pointer to an unsigned long
1022
+ and then store a reference to it using
1023
+ a Ruby number object. */
1024
+
1025
+ /* Convert the pointer to a Ruby number */
1026
+ unsigned long value = (unsigned long) ptr;
1027
+ return LONG2NUM(value);
1028
+ }
1029
+
1030
+ /* Get a Ruby number to reference an object */
1031
+ SWIGRUNTIME VALUE SWIG_RubyObjectToReference(VALUE object) {
1032
+ /* We cast the object to an unsigned long
1033
+ and then store a reference to it using
1034
+ a Ruby number object. */
1035
+
1036
+ /* Convert the Object to a Ruby number */
1037
+ unsigned long value = (unsigned long) object;
1038
+ return LONG2NUM(value);
1039
+ }
1040
+
1041
+ /* Get a Ruby object from a previously stored reference */
1042
+ SWIGRUNTIME VALUE SWIG_RubyReferenceToObject(VALUE reference) {
1043
+ /* The provided Ruby number object is a reference
1044
+ to the Ruby object we want.*/
1045
+
1046
+ /* First convert the Ruby number to a C number */
1047
+ unsigned long value = NUM2LONG(reference);
1048
+ return (VALUE) value;
1049
+ }
1050
+
1051
+ /* Add a Tracking from a C/C++ struct to a Ruby object */
1052
+ SWIGRUNTIME void SWIG_RubyAddTracking(void* ptr, VALUE object) {
1053
+ /* In a Ruby hash table we store the pointer and
1054
+ the associated Ruby object. The trick here is
1055
+ that we cannot store the Ruby object directly - if
1056
+ we do then it cannot be garbage collected. So
1057
+ instead we typecast it as a unsigned long and
1058
+ convert it to a Ruby number object.*/
1059
+
1060
+ /* Get a reference to the pointer as a Ruby number */
1061
+ VALUE key = SWIG_RubyPtrToReference(ptr);
1062
+
1063
+ /* Get a reference to the Ruby object as a Ruby number */
1064
+ VALUE value = SWIG_RubyObjectToReference(object);
1065
+
1066
+ /* Store the mapping to the global hash table. */
1067
+ rb_hash_aset(swig_ruby_trackings, key, value);
1068
+ }
1069
+
1070
+ /* Get the Ruby object that owns the specified C/C++ struct */
1071
+ SWIGRUNTIME VALUE SWIG_RubyInstanceFor(void* ptr) {
1072
+ /* Get a reference to the pointer as a Ruby number */
1073
+ VALUE key = SWIG_RubyPtrToReference(ptr);
1074
+
1075
+ /* Now lookup the value stored in the global hash table */
1076
+ VALUE value = rb_hash_aref(swig_ruby_trackings, key);
1077
+
1078
+ if (value == Qnil) {
1079
+ /* No object exists - return nil. */
1080
+ return Qnil;
1081
+ }
1082
+ else {
1083
+ /* Convert this value to Ruby object */
1084
+ return SWIG_RubyReferenceToObject(value);
1085
+ }
1086
+ }
1087
+
1088
+ /* Remove a Tracking from a C/C++ struct to a Ruby object. It
1089
+ is very important to remove objects once they are destroyed
1090
+ since the same memory address may be reused later to create
1091
+ a new object. */
1092
+ SWIGRUNTIME void SWIG_RubyRemoveTracking(void* ptr) {
1093
+ /* Get a reference to the pointer as a Ruby number */
1094
+ VALUE key = SWIG_RubyPtrToReference(ptr);
1095
+
1096
+ /* Delete the object from the hash table by calling Ruby's
1097
+ do this we need to call the Hash.delete method.*/
1098
+ rb_funcall(swig_ruby_trackings, swig_ruby_hash_delete, 1, key);
1099
+ }
1100
+
1101
+ /* This is a helper method that unlinks a Ruby object from its
1102
+ underlying C++ object. This is needed if the lifetime of the
1103
+ Ruby object is longer than the C++ object */
1104
+ SWIGRUNTIME void SWIG_RubyUnlinkObjects(void* ptr) {
1105
+ VALUE object = SWIG_RubyInstanceFor(ptr);
1106
+
1107
+ if (object != Qnil) {
1108
+ DATA_PTR(object) = 0;
1109
+ }
1110
+ }
1111
+
1112
+
1113
+ #ifdef __cplusplus
1114
+ }
1115
+ #endif
1116
+
1117
+ /* -----------------------------------------------------------------------------
1118
+ * Ruby API portion that goes into the runtime
1119
+ * ----------------------------------------------------------------------------- */
1120
+
1121
+ #ifdef __cplusplus
1122
+ extern "C" {
1123
+ #endif
1124
+
1125
+ SWIGINTERN VALUE
1126
+ SWIG_Ruby_AppendOutput(VALUE target, VALUE o) {
1127
+ if (NIL_P(target)) {
1128
+ target = o;
1129
+ } else {
1130
+ if (TYPE(target) != T_ARRAY) {
1131
+ VALUE o2 = target;
1132
+ target = rb_ary_new();
1133
+ rb_ary_push(target, o2);
1134
+ }
1135
+ rb_ary_push(target, o);
1136
+ }
1137
+ return target;
1138
+ }
1139
+
1140
+ #ifdef __cplusplus
1141
+ }
1142
+ #endif
1143
+
1144
+
1145
+ /* -----------------------------------------------------------------------------
1146
+ * See the LICENSE file for information on copyright, usage and redistribution
1147
+ * of SWIG, and the README file for authors - http://www.swig.org/release.html.
1148
+ *
1149
+ * rubyrun.swg
1150
+ *
1151
+ * This file contains the runtime support for Ruby modules
1152
+ * and includes code for managing global variables and pointer
1153
+ * type checking.
1154
+ * ----------------------------------------------------------------------------- */
1155
+
1156
+ /* For backward compatibility only */
1157
+ #define SWIG_POINTER_EXCEPTION 0
1158
+
1159
+ /* for raw pointers */
1160
+ #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Ruby_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
1161
+ #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Ruby_ConvertPtrAndOwn(obj, pptr, type, flags, own)
1162
+ #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Ruby_NewPointerObj(ptr, type, flags)
1163
+ #define SWIG_AcquirePtr(ptr, own) SWIG_Ruby_AcquirePtr(ptr, own)
1164
+ #define swig_owntype ruby_owntype
1165
+
1166
+ /* for raw packed data */
1167
+ #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Ruby_ConvertPacked(obj, ptr, sz, ty, flags)
1168
+ #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Ruby_NewPackedObj(ptr, sz, type)
1169
+
1170
+ /* for class or struct pointers */
1171
+ #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1172
+ #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1173
+
1174
+ /* for C or C++ function pointers */
1175
+ #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_ConvertPtr(obj, pptr, type, 0)
1176
+ #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_NewPointerObj(ptr, type, 0)
1177
+
1178
+ /* for C++ member pointers, ie, member methods */
1179
+ #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Ruby_ConvertPacked(obj, ptr, sz, ty)
1180
+ #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Ruby_NewPackedObj(ptr, sz, type)
1181
+
1182
+
1183
+ /* Runtime API */
1184
+
1185
+ #define SWIG_GetModule(clientdata) SWIG_Ruby_GetModule()
1186
+ #define SWIG_SetModule(clientdata, pointer) SWIG_Ruby_SetModule(pointer)
1187
+
1188
+
1189
+ /* Error manipulation */
1190
+
1191
+ #define SWIG_ErrorType(code) SWIG_Ruby_ErrorType(code)
1192
+ #define SWIG_Error(code, msg) rb_raise(SWIG_Ruby_ErrorType(code), msg)
1193
+ #define SWIG_fail goto fail
1194
+
1195
+
1196
+ /* Ruby-specific SWIG API */
1197
+
1198
+ #define SWIG_InitRuntime() SWIG_Ruby_InitRuntime()
1199
+ #define SWIG_define_class(ty) SWIG_Ruby_define_class(ty)
1200
+ #define SWIG_NewClassInstance(value, ty) SWIG_Ruby_NewClassInstance(value, ty)
1201
+ #define SWIG_MangleStr(value) SWIG_Ruby_MangleStr(value)
1202
+ #define SWIG_CheckConvert(value, ty) SWIG_Ruby_CheckConvert(value, ty)
1203
+
1204
+
1205
+ /* -----------------------------------------------------------------------------
1206
+ * pointers/data manipulation
1207
+ * ----------------------------------------------------------------------------- */
1208
+
1209
+ #ifdef __cplusplus
1210
+ extern "C" {
1211
+ #if 0
1212
+ } /* cc-mode */
1213
+ #endif
1214
+ #endif
1215
+
1216
+ typedef struct {
1217
+ VALUE klass;
1218
+ VALUE mImpl;
1219
+ void (*mark)(void *);
1220
+ void (*destroy)(void *);
1221
+ int trackObjects;
1222
+ } swig_class;
1223
+
1224
+
1225
+ static VALUE _mSWIG = Qnil;
1226
+ static VALUE _cSWIG_Pointer = Qnil;
1227
+ static VALUE swig_runtime_data_type_pointer = Qnil;
1228
+
1229
+ SWIGRUNTIME VALUE
1230
+ getExceptionClass(void) {
1231
+ static int init = 0;
1232
+ static VALUE rubyExceptionClass ;
1233
+ if (!init) {
1234
+ init = 1;
1235
+ rubyExceptionClass = rb_const_get(_mSWIG, rb_intern("Exception"));
1236
+ }
1237
+ return rubyExceptionClass;
1238
+ }
1239
+
1240
+ /* This code checks to see if the Ruby object being raised as part
1241
+ of an exception inherits from the Ruby class Exception. If so,
1242
+ the object is simply returned. If not, then a new Ruby exception
1243
+ object is created and that will be returned to Ruby.*/
1244
+ SWIGRUNTIME VALUE
1245
+ SWIG_Ruby_ExceptionType(swig_type_info *desc, VALUE obj) {
1246
+ VALUE exceptionClass = getExceptionClass();
1247
+ if (rb_obj_is_kind_of(obj, exceptionClass)) {
1248
+ return obj;
1249
+ } else {
1250
+ return rb_exc_new3(rb_eRuntimeError, rb_obj_as_string(obj));
1251
+ }
1252
+ }
1253
+
1254
+ /* Initialize Ruby runtime support */
1255
+ SWIGRUNTIME void
1256
+ SWIG_Ruby_InitRuntime(void)
1257
+ {
1258
+ if (_mSWIG == Qnil) {
1259
+ _mSWIG = rb_define_module("SWIG");
1260
+ }
1261
+ }
1262
+
1263
+ /* Define Ruby class for C type */
1264
+ SWIGRUNTIME void
1265
+ SWIG_Ruby_define_class(swig_type_info *type)
1266
+ {
1267
+ VALUE klass;
1268
+ char *klass_name = (char *) malloc(4 + strlen(type->name) + 1);
1269
+ sprintf(klass_name, "TYPE%s", type->name);
1270
+ if (NIL_P(_cSWIG_Pointer)) {
1271
+ _cSWIG_Pointer = rb_define_class_under(_mSWIG, "Pointer", rb_cObject);
1272
+ rb_undef_method(CLASS_OF(_cSWIG_Pointer), "new");
1273
+ }
1274
+ klass = rb_define_class_under(_mSWIG, klass_name, _cSWIG_Pointer);
1275
+ free((void *) klass_name);
1276
+ }
1277
+
1278
+ /* Create a new pointer object */
1279
+ SWIGRUNTIME VALUE
1280
+ SWIG_Ruby_NewPointerObj(void *ptr, swig_type_info *type, int flags)
1281
+ {
1282
+ int own = flags & SWIG_POINTER_OWN;
1283
+
1284
+ char *klass_name;
1285
+ swig_class *sklass;
1286
+ VALUE klass;
1287
+ VALUE obj;
1288
+
1289
+ if (!ptr)
1290
+ return Qnil;
1291
+
1292
+ if (type->clientdata) {
1293
+ sklass = (swig_class *) type->clientdata;
1294
+
1295
+ /* Are we tracking this class and have we already returned this Ruby object? */
1296
+ if (sklass->trackObjects) {
1297
+ obj = SWIG_RubyInstanceFor(ptr);
1298
+
1299
+ /* Check the object's type and make sure it has the correct type.
1300
+ It might not in cases where methods do things like
1301
+ downcast methods. */
1302
+ if (obj != Qnil) {
1303
+ VALUE value = rb_iv_get(obj, "__swigtype__");
1304
+ char* type_name = RSTRING_PTR(value);
1305
+
1306
+ if (strcmp(type->name, type_name) == 0) {
1307
+ return obj;
1308
+ }
1309
+ }
1310
+ }
1311
+
1312
+ /* Create a new Ruby object */
1313
+ obj = Data_Wrap_Struct(sklass->klass, VOIDFUNC(sklass->mark), (own ? VOIDFUNC(sklass->destroy) : 0), ptr);
1314
+
1315
+ /* If tracking is on for this class then track this object. */
1316
+ if (sklass->trackObjects) {
1317
+ SWIG_RubyAddTracking(ptr, obj);
1318
+ }
1319
+ } else {
1320
+ klass_name = (char *) malloc(4 + strlen(type->name) + 1);
1321
+ sprintf(klass_name, "TYPE%s", type->name);
1322
+ klass = rb_const_get(_mSWIG, rb_intern(klass_name));
1323
+ free((void *) klass_name);
1324
+ obj = Data_Wrap_Struct(klass, 0, 0, ptr);
1325
+ }
1326
+ rb_iv_set(obj, "__swigtype__", rb_str_new2(type->name));
1327
+
1328
+ return obj;
1329
+ }
1330
+
1331
+ /* Create a new class instance (always owned) */
1332
+ SWIGRUNTIME VALUE
1333
+ SWIG_Ruby_NewClassInstance(VALUE klass, swig_type_info *type)
1334
+ {
1335
+ VALUE obj;
1336
+ swig_class *sklass = (swig_class *) type->clientdata;
1337
+ obj = Data_Wrap_Struct(klass, VOIDFUNC(sklass->mark), VOIDFUNC(sklass->destroy), 0);
1338
+ rb_iv_set(obj, "__swigtype__", rb_str_new2(type->name));
1339
+ return obj;
1340
+ }
1341
+
1342
+ /* Get type mangle from class name */
1343
+ SWIGRUNTIMEINLINE char *
1344
+ SWIG_Ruby_MangleStr(VALUE obj)
1345
+ {
1346
+ VALUE stype = rb_iv_get(obj, "__swigtype__");
1347
+ return StringValuePtr(stype);
1348
+ }
1349
+
1350
+ /* Acquire a pointer value */
1351
+ typedef void (*ruby_owntype)(void*);
1352
+
1353
+ SWIGRUNTIME ruby_owntype
1354
+ SWIG_Ruby_AcquirePtr(VALUE obj, ruby_owntype own) {
1355
+ if (obj) {
1356
+ ruby_owntype oldown = RDATA(obj)->dfree;
1357
+ RDATA(obj)->dfree = own;
1358
+ return oldown;
1359
+ } else {
1360
+ return 0;
1361
+ }
1362
+ }
1363
+
1364
+ /* Convert a pointer value */
1365
+ SWIGRUNTIME int
1366
+ SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags, ruby_owntype *own)
1367
+ {
1368
+ char *c;
1369
+ swig_cast_info *tc;
1370
+ void *vptr = 0;
1371
+
1372
+ /* Grab the pointer */
1373
+ if (NIL_P(obj)) {
1374
+ *ptr = 0;
1375
+ return SWIG_OK;
1376
+ } else {
1377
+ if (TYPE(obj) != T_DATA) {
1378
+ return SWIG_ERROR;
1379
+ }
1380
+ Data_Get_Struct(obj, void, vptr);
1381
+ }
1382
+
1383
+ if (own) *own = RDATA(obj)->dfree;
1384
+
1385
+ /* Check to see if the input object is giving up ownership
1386
+ of the underlying C struct or C++ object. If so then we
1387
+ need to reset the destructor since the Ruby object no
1388
+ longer owns the underlying C++ object.*/
1389
+ if (flags & SWIG_POINTER_DISOWN) {
1390
+ /* Is tracking on for this class? */
1391
+ int track = 0;
1392
+ if (ty && ty->clientdata) {
1393
+ swig_class *sklass = (swig_class *) ty->clientdata;
1394
+ track = sklass->trackObjects;
1395
+ }
1396
+
1397
+ if (track) {
1398
+ /* We are tracking objects for this class. Thus we change the destructor
1399
+ * to SWIG_RubyRemoveTracking. This allows us to
1400
+ * remove the mapping from the C++ to Ruby object
1401
+ * when the Ruby object is garbage collected. If we don't
1402
+ * do this, then it is possible we will return a reference
1403
+ * to a Ruby object that no longer exists thereby crashing Ruby. */
1404
+ RDATA(obj)->dfree = SWIG_RubyRemoveTracking;
1405
+ } else {
1406
+ RDATA(obj)->dfree = 0;
1407
+ }
1408
+ }
1409
+
1410
+ /* Do type-checking if type info was provided */
1411
+ if (ty) {
1412
+ if (ty->clientdata) {
1413
+ if (rb_obj_is_kind_of(obj, ((swig_class *) (ty->clientdata))->klass)) {
1414
+ if (vptr == 0) {
1415
+ /* The object has already been deleted */
1416
+ return SWIG_ObjectPreviouslyDeletedError;
1417
+ }
1418
+ *ptr = vptr;
1419
+ return SWIG_OK;
1420
+ }
1421
+ }
1422
+ if ((c = SWIG_MangleStr(obj)) == NULL) {
1423
+ return SWIG_ERROR;
1424
+ }
1425
+ tc = SWIG_TypeCheck(c, ty);
1426
+ if (!tc) {
1427
+ return SWIG_ERROR;
1428
+ }
1429
+ *ptr = SWIG_TypeCast(tc, vptr);
1430
+ } else {
1431
+ *ptr = vptr;
1432
+ }
1433
+
1434
+ return SWIG_OK;
1435
+ }
1436
+
1437
+ /* Check convert */
1438
+ SWIGRUNTIMEINLINE int
1439
+ SWIG_Ruby_CheckConvert(VALUE obj, swig_type_info *ty)
1440
+ {
1441
+ char *c = SWIG_MangleStr(obj);
1442
+ if (!c) return 0;
1443
+ return SWIG_TypeCheck(c,ty) != 0;
1444
+ }
1445
+
1446
+ SWIGRUNTIME VALUE
1447
+ SWIG_Ruby_NewPackedObj(void *ptr, int sz, swig_type_info *type) {
1448
+ char result[1024];
1449
+ char *r = result;
1450
+ if ((2*sz + 1 + strlen(type->name)) > 1000) return 0;
1451
+ *(r++) = '_';
1452
+ r = SWIG_PackData(r, ptr, sz);
1453
+ strcpy(r, type->name);
1454
+ return rb_str_new2(result);
1455
+ }
1456
+
1457
+ /* Convert a packed value value */
1458
+ SWIGRUNTIME int
1459
+ SWIG_Ruby_ConvertPacked(VALUE obj, void *ptr, int sz, swig_type_info *ty) {
1460
+ swig_cast_info *tc;
1461
+ const char *c;
1462
+
1463
+ if (TYPE(obj) != T_STRING) goto type_error;
1464
+ c = StringValuePtr(obj);
1465
+ /* Pointer values must start with leading underscore */
1466
+ if (*c != '_') goto type_error;
1467
+ c++;
1468
+ c = SWIG_UnpackData(c, ptr, sz);
1469
+ if (ty) {
1470
+ tc = SWIG_TypeCheck(c, ty);
1471
+ if (!tc) goto type_error;
1472
+ }
1473
+ return SWIG_OK;
1474
+
1475
+ type_error:
1476
+ return SWIG_ERROR;
1477
+ }
1478
+
1479
+ SWIGRUNTIME swig_module_info *
1480
+ SWIG_Ruby_GetModule(void)
1481
+ {
1482
+ VALUE pointer;
1483
+ swig_module_info *ret = 0;
1484
+ VALUE verbose = rb_gv_get("VERBOSE");
1485
+
1486
+ /* temporarily disable warnings, since the pointer check causes warnings with 'ruby -w' */
1487
+ rb_gv_set("VERBOSE", Qfalse);
1488
+
1489
+ /* first check if pointer already created */
1490
+ pointer = rb_gv_get("$swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME);
1491
+ if (pointer != Qnil) {
1492
+ Data_Get_Struct(pointer, swig_module_info, ret);
1493
+ }
1494
+
1495
+ /* reinstate warnings */
1496
+ rb_gv_set("VERBOSE", verbose);
1497
+ return ret;
1498
+ }
1499
+
1500
+ SWIGRUNTIME void
1501
+ SWIG_Ruby_SetModule(swig_module_info *pointer)
1502
+ {
1503
+ /* register a new class */
1504
+ VALUE cl = rb_define_class("swig_runtime_data", rb_cObject);
1505
+ /* create and store the structure pointer to a global variable */
1506
+ swig_runtime_data_type_pointer = Data_Wrap_Struct(cl, 0, 0, pointer);
1507
+ rb_define_readonly_variable("$swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, &swig_runtime_data_type_pointer);
1508
+ }
1509
+
1510
+ #ifdef __cplusplus
1511
+ #if 0
1512
+ { /* cc-mode */
1513
+ #endif
1514
+ }
1515
+ #endif
1516
+
1517
+
1518
+
1519
+ #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
1520
+
1521
+ #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
1522
+
1523
+
1524
+
1525
+ /* -------- TYPES TABLE (BEGIN) -------- */
1526
+
1527
+ #define SWIGTYPE_p_char swig_types[0]
1528
+ #define SWIGTYPE_p_rho_param swig_types[1]
1529
+ static swig_type_info *swig_types[3];
1530
+ static swig_module_info swig_module = {swig_types, 2, 0, 0, 0, 0};
1531
+ #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
1532
+ #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
1533
+
1534
+ /* -------- TYPES TABLE (END) -------- */
1535
+
1536
+ #define SWIG_init Init_NavBar
1537
+ #define SWIG_name "NavBar"
1538
+
1539
+ static VALUE mNavBar;
1540
+
1541
+ #define SWIGVERSION 0x010331
1542
+ #define SWIG_VERSION SWIGVERSION
1543
+
1544
+
1545
+ #define SWIG_as_voidptr(a) (void *)((const void *)(a))
1546
+ #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
1547
+
1548
+
1549
+ #include "ext/rho/rhoruby.h"
1550
+ extern void create_navbar(rho_param *p);
1551
+ #define create create_navbar
1552
+ extern void remove_navbar();
1553
+ #define remove remove_navbar
1554
+
1555
+ SWIGINTERN VALUE
1556
+ _wrap_create(int argc, VALUE *argv, VALUE self) {
1557
+ rho_param *arg1 = (rho_param *) 0 ;
1558
+
1559
+ if ((argc < 1) || (argc > 1)) {
1560
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
1561
+ }
1562
+ {
1563
+ arg1 = valueToRhoParam(argv[0]);
1564
+ }
1565
+ create(arg1);
1566
+ {
1567
+ rho_param_free(arg1);
1568
+ }
1569
+ return Qnil;
1570
+ fail:
1571
+ {
1572
+ rho_param_free(arg1);
1573
+ }
1574
+ return Qnil;
1575
+ }
1576
+
1577
+
1578
+ SWIGINTERN VALUE
1579
+ _wrap_remove(int argc, VALUE *argv, VALUE self) {
1580
+ if ((argc < 0) || (argc > 0)) {
1581
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
1582
+ }
1583
+ remove();
1584
+ return Qnil;
1585
+ fail:
1586
+ return Qnil;
1587
+ }
1588
+
1589
+
1590
+
1591
+ /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
1592
+
1593
+ static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};
1594
+ static swig_type_info _swigt__p_rho_param = {"_p_rho_param", "rho_param *", 0, 0, (void*)0, 0};
1595
+
1596
+ static swig_type_info *swig_type_initial[] = {
1597
+ &_swigt__p_char,
1598
+ &_swigt__p_rho_param,
1599
+ };
1600
+
1601
+ static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
1602
+ static swig_cast_info _swigc__p_rho_param[] = { {&_swigt__p_rho_param, 0, 0, 0},{0, 0, 0, 0}};
1603
+
1604
+ static swig_cast_info *swig_cast_initial[] = {
1605
+ _swigc__p_char,
1606
+ _swigc__p_rho_param,
1607
+ };
1608
+
1609
+
1610
+ /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
1611
+
1612
+ /* -----------------------------------------------------------------------------
1613
+ * Type initialization:
1614
+ * This problem is tough by the requirement that no dynamic
1615
+ * memory is used. Also, since swig_type_info structures store pointers to
1616
+ * swig_cast_info structures and swig_cast_info structures store pointers back
1617
+ * to swig_type_info structures, we need some lookup code at initialization.
1618
+ * The idea is that swig generates all the structures that are needed.
1619
+ * The runtime then collects these partially filled structures.
1620
+ * The SWIG_InitializeModule function takes these initial arrays out of
1621
+ * swig_module, and does all the lookup, filling in the swig_module.types
1622
+ * array with the correct data and linking the correct swig_cast_info
1623
+ * structures together.
1624
+ *
1625
+ * The generated swig_type_info structures are assigned staticly to an initial
1626
+ * array. We just loop through that array, and handle each type individually.
1627
+ * First we lookup if this type has been already loaded, and if so, use the
1628
+ * loaded structure instead of the generated one. Then we have to fill in the
1629
+ * cast linked list. The cast data is initially stored in something like a
1630
+ * two-dimensional array. Each row corresponds to a type (there are the same
1631
+ * number of rows as there are in the swig_type_initial array). Each entry in
1632
+ * a column is one of the swig_cast_info structures for that type.
1633
+ * The cast_initial array is actually an array of arrays, because each row has
1634
+ * a variable number of columns. So to actually build the cast linked list,
1635
+ * we find the array of casts associated with the type, and loop through it
1636
+ * adding the casts to the list. The one last trick we need to do is making
1637
+ * sure the type pointer in the swig_cast_info struct is correct.
1638
+ *
1639
+ * First off, we lookup the cast->type name to see if it is already loaded.
1640
+ * There are three cases to handle:
1641
+ * 1) If the cast->type has already been loaded AND the type we are adding
1642
+ * casting info to has not been loaded (it is in this module), THEN we
1643
+ * replace the cast->type pointer with the type pointer that has already
1644
+ * been loaded.
1645
+ * 2) If BOTH types (the one we are adding casting info to, and the
1646
+ * cast->type) are loaded, THEN the cast info has already been loaded by
1647
+ * the previous module so we just ignore it.
1648
+ * 3) Finally, if cast->type has not already been loaded, then we add that
1649
+ * swig_cast_info to the linked list (because the cast->type) pointer will
1650
+ * be correct.
1651
+ * ----------------------------------------------------------------------------- */
1652
+
1653
+ #ifdef __cplusplus
1654
+ extern "C" {
1655
+ #if 0
1656
+ } /* c-mode */
1657
+ #endif
1658
+ #endif
1659
+
1660
+ #if 0
1661
+ #define SWIGRUNTIME_DEBUG
1662
+ #endif
1663
+
1664
+
1665
+ SWIGRUNTIME void
1666
+ SWIG_InitializeModule(void *clientdata) {
1667
+ size_t i;
1668
+ swig_module_info *module_head, *iter;
1669
+ int found;
1670
+
1671
+ clientdata = clientdata;
1672
+
1673
+ /* check to see if the circular list has been setup, if not, set it up */
1674
+ if (swig_module.next==0) {
1675
+ /* Initialize the swig_module */
1676
+ swig_module.type_initial = swig_type_initial;
1677
+ swig_module.cast_initial = swig_cast_initial;
1678
+ swig_module.next = &swig_module;
1679
+ }
1680
+
1681
+ /* Try and load any already created modules */
1682
+ module_head = SWIG_GetModule(clientdata);
1683
+ if (!module_head) {
1684
+ /* This is the first module loaded for this interpreter */
1685
+ /* so set the swig module into the interpreter */
1686
+ SWIG_SetModule(clientdata, &swig_module);
1687
+ module_head = &swig_module;
1688
+ } else {
1689
+ /* the interpreter has loaded a SWIG module, but has it loaded this one? */
1690
+ found=0;
1691
+ iter=module_head;
1692
+ do {
1693
+ if (iter==&swig_module) {
1694
+ found=1;
1695
+ break;
1696
+ }
1697
+ iter=iter->next;
1698
+ } while (iter!= module_head);
1699
+
1700
+ /* if the is found in the list, then all is done and we may leave */
1701
+ if (found) return;
1702
+ /* otherwise we must add out module into the list */
1703
+ swig_module.next = module_head->next;
1704
+ module_head->next = &swig_module;
1705
+ }
1706
+
1707
+ /* Now work on filling in swig_module.types */
1708
+ #ifdef SWIGRUNTIME_DEBUG
1709
+ printf("SWIG_InitializeModule: size %d\n", swig_module.size);
1710
+ #endif
1711
+ for (i = 0; i < swig_module.size; ++i) {
1712
+ swig_type_info *type = 0;
1713
+ swig_type_info *ret;
1714
+ swig_cast_info *cast;
1715
+
1716
+ #ifdef SWIGRUNTIME_DEBUG
1717
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
1718
+ #endif
1719
+
1720
+ /* if there is another module already loaded */
1721
+ if (swig_module.next != &swig_module) {
1722
+ type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name);
1723
+ }
1724
+ if (type) {
1725
+ /* Overwrite clientdata field */
1726
+ #ifdef SWIGRUNTIME_DEBUG
1727
+ printf("SWIG_InitializeModule: found type %s\n", type->name);
1728
+ #endif
1729
+ if (swig_module.type_initial[i]->clientdata) {
1730
+ type->clientdata = swig_module.type_initial[i]->clientdata;
1731
+ #ifdef SWIGRUNTIME_DEBUG
1732
+ printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name);
1733
+ #endif
1734
+ }
1735
+ } else {
1736
+ type = swig_module.type_initial[i];
1737
+ }
1738
+
1739
+ /* Insert casting types */
1740
+ cast = swig_module.cast_initial[i];
1741
+ while (cast->type) {
1742
+
1743
+ /* Don't need to add information already in the list */
1744
+ ret = 0;
1745
+ #ifdef SWIGRUNTIME_DEBUG
1746
+ printf("SWIG_InitializeModule: look cast %s\n", cast->type->name);
1747
+ #endif
1748
+ if (swig_module.next != &swig_module) {
1749
+ ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name);
1750
+ #ifdef SWIGRUNTIME_DEBUG
1751
+ if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name);
1752
+ #endif
1753
+ }
1754
+ if (ret) {
1755
+ if (type == swig_module.type_initial[i]) {
1756
+ #ifdef SWIGRUNTIME_DEBUG
1757
+ printf("SWIG_InitializeModule: skip old type %s\n", ret->name);
1758
+ #endif
1759
+ cast->type = ret;
1760
+ ret = 0;
1761
+ } else {
1762
+ /* Check for casting already in the list */
1763
+ swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type);
1764
+ #ifdef SWIGRUNTIME_DEBUG
1765
+ if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name);
1766
+ #endif
1767
+ if (!ocast) ret = 0;
1768
+ }
1769
+ }
1770
+
1771
+ if (!ret) {
1772
+ #ifdef SWIGRUNTIME_DEBUG
1773
+ printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name);
1774
+ #endif
1775
+ if (type->cast) {
1776
+ type->cast->prev = cast;
1777
+ cast->next = type->cast;
1778
+ }
1779
+ type->cast = cast;
1780
+ }
1781
+ cast++;
1782
+ }
1783
+ /* Set entry in modules->types array equal to the type */
1784
+ swig_module.types[i] = type;
1785
+ }
1786
+ swig_module.types[i] = 0;
1787
+
1788
+ #ifdef SWIGRUNTIME_DEBUG
1789
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
1790
+ for (i = 0; i < swig_module.size; ++i) {
1791
+ int j = 0;
1792
+ swig_cast_info *cast = swig_module.cast_initial[i];
1793
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
1794
+ while (cast->type) {
1795
+ printf("SWIG_InitializeModule: cast type %s\n", cast->type->name);
1796
+ cast++;
1797
+ ++j;
1798
+ }
1799
+ printf("---- Total casts: %d\n",j);
1800
+ }
1801
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
1802
+ #endif
1803
+ }
1804
+
1805
+ /* This function will propagate the clientdata field of type to
1806
+ * any new swig_type_info structures that have been added into the list
1807
+ * of equivalent types. It is like calling
1808
+ * SWIG_TypeClientData(type, clientdata) a second time.
1809
+ */
1810
+ SWIGRUNTIME void
1811
+ SWIG_PropagateClientData(void) {
1812
+ size_t i;
1813
+ swig_cast_info *equiv;
1814
+ static int init_run = 0;
1815
+
1816
+ if (init_run) return;
1817
+ init_run = 1;
1818
+
1819
+ for (i = 0; i < swig_module.size; i++) {
1820
+ if (swig_module.types[i]->clientdata) {
1821
+ equiv = swig_module.types[i]->cast;
1822
+ while (equiv) {
1823
+ if (!equiv->converter) {
1824
+ if (equiv->type && !equiv->type->clientdata)
1825
+ SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata);
1826
+ }
1827
+ equiv = equiv->next;
1828
+ }
1829
+ }
1830
+ }
1831
+ }
1832
+
1833
+ #ifdef __cplusplus
1834
+ #if 0
1835
+ { /* c-mode */
1836
+ #endif
1837
+ }
1838
+ #endif
1839
+
1840
+
1841
+ #ifdef __cplusplus
1842
+ extern "C"
1843
+ #endif
1844
+ SWIGEXPORT void Init_NavBar(void) {
1845
+ size_t i;
1846
+
1847
+ SWIG_InitRuntime();
1848
+ mNavBar = rb_define_module("NavBar");
1849
+
1850
+ SWIG_InitializeModule(0);
1851
+ for (i = 0; i < swig_module.size; i++) {
1852
+ SWIG_define_class(swig_module.types[i]);
1853
+ }
1854
+
1855
+ SWIG_RubyInitializeTrackings();
1856
+ rb_define_module_function(mNavBar, "create", _wrap_create, -1);
1857
+ rb_define_module_function(mNavBar, "remove", _wrap_remove, -1);
1858
+ }
1859
+